Enable Core app and authtools.

This commit is contained in:
Josh Washburne 2017-12-27 16:12:53 -05:00
parent 2d62bdf6f0
commit 0b0a0191f2
2 changed files with 8 additions and 1 deletions

View file

@ -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'

View file

@ -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),
]