1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #7650: Add support for local account password validation

This commit is contained in:
jeremystretch
2021-12-16 11:28:57 -05:00
parent 134742a8b7
commit ea6cdc9673
4 changed files with 33 additions and 0 deletions

View File

@ -73,6 +73,7 @@ SECRET_KEY = getattr(configuration, 'SECRET_KEY')
# Set static config parameters
ADMINS = getattr(configuration, 'ADMINS', [])
AUTH_PASSWORD_VALIDATORS = getattr(configuration, 'AUTH_PASSWORD_VALIDATORS', [])
BASE_PATH = getattr(configuration, 'BASE_PATH', '')
if BASE_PATH:
BASE_PATH = BASE_PATH.strip('/') + '/' # Enforce trailing slash only