We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bac470 commit d73a57bCopy full SHA for d73a57b
readthedocs/settings/base.py
@@ -181,6 +181,24 @@ def USE_PROMOS(self): # noqa
181
'allauth.account.auth_backends.AuthenticationBackend',
182
)
183
184
+ AUTH_PASSWORD_VALIDATORS = [
185
+ {
186
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
187
+ },
188
189
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
190
+ 'OPTIONS': {
191
+ 'min_length': 9,
192
+ }
193
194
195
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
196
197
198
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
199
200
+ ]
201
+
202
MESSAGE_STORAGE = 'readthedocs.notifications.storages.FallbackUniqueStorage'
203
204
NOTIFICATION_BACKENDS = [
0 commit comments