Enable Core app and authtools.
This commit is contained in:
parent
2d62bdf6f0
commit
0b0a0191f2
2 changed files with 8 additions and 1 deletions
|
@ -23,6 +23,8 @@ AUTH_PASSWORD_VALIDATORS = [
|
|||
},
|
||||
]
|
||||
|
||||
AUTH_USER_MODEL = 'core.RadioUser'
|
||||
|
||||
INSTALLED_APPS = [
|
||||
'django.contrib.admin',
|
||||
'django.contrib.auth',
|
||||
|
@ -30,6 +32,10 @@ INSTALLED_APPS = [
|
|||
'django.contrib.sessions',
|
||||
'django.contrib.messages',
|
||||
'django.contrib.staticfiles',
|
||||
|
||||
'authtools',
|
||||
|
||||
'core.apps.CoreConfig',
|
||||
]
|
||||
|
||||
LANGUAGE_CODE = 'en-us'
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
from django.contrib import admin
|
||||
from django.urls import path
|
||||
from django.urls import include, path
|
||||
|
||||
urlpatterns = [
|
||||
path('accounts/', include('authtools.urls')),
|
||||
path('admin/', admin.site.urls),
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue