fix: fixed secrets import

This commit is contained in:
Rushil Umaretiya 2022-11-07 03:13:34 -05:00 committed by GitHub
parent 0750ff5efe
commit 233120cc0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
from . import BASE_DIR
from . import BASE_DIR, AUTHENTICATION_BACKENDS
DEBUG=True
SECRET_KEY='insecure_global_key'
@ -37,4 +37,4 @@ else:
if DEBUG:
AUTH_PASSWORD_VALIDATORS = []
AUTHENTICATION_BACKENDS.append('django.contrib.auth.backends.ModelBackend')
AUTHENTICATION_BACKENDS.append('django.contrib.auth.backends.ModelBackend')