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

@@ -72,6 +72,17 @@ ADMINS = [
# ('John Doe', 'jdoe@example.com'),
]
# Enable any desired validators for local account passwords below. For a list of included validators, please see the
# Django documentation at https://docs.djangoproject.com/en/stable/topics/auth/passwords/#password-validation.
AUTH_PASSWORD_VALIDATORS = [
# {
# 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
# 'OPTIONS': {
# 'min_length': 10,
# }
# },
]
# Base URL path if accessing NetBox within a directory. For example, if installed at https://example.com/netbox/, set:
# BASE_PATH = 'netbox/'
BASE_PATH = ''

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