Remove allauth

This commit is contained in:
Benjamin Bach 2019-08-31 18:52:12 +02:00
parent 056ca430ef
commit a22c2587dd
3 changed files with 0 additions and 7 deletions

View File

@ -38,9 +38,6 @@ INSTALLED_APPS = [
'profiles',
'accounting',
'membership',
'allauth',
'allauth.account',
]
MIDDLEWARE = [

View File

@ -1,10 +1,7 @@
"""URLs for the membersystem"""
from django.conf.urls import url
from django.contrib import admin
from django.urls import include
from django.urls import path
urlpatterns = [
url(r'^accounts/', include('allauth.urls')),
path('admin/', admin.site.urls),
]

View File

@ -1,3 +1,2 @@
Django==2.0.6
django-allauth==0.36.0
django-money==0.14