Skip to content

Commit

Permalink
fix: Use the correct default minimium password length mentioned in in…
Browse files Browse the repository at this point in the history
…stall operation document

The default minimum password length  mentioned in edx-platform/lms/envs/common.py is 8 characters but at install operation document you see 2.
closes #2119
  • Loading branch information
vahid75 authored and feanil committed Jan 7, 2025
1 parent 271b8e5 commit 60d6cfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion en_us/install_operations/source/configuration/password.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ under the ``AUTH_PASSWORD_VALIDATORS`` setting::
- NAME: django.contrib.auth.password_validation.UserAttributeSimilarityValidator
- NAME: common.djangoapps.util.password_policy_validators.MinimumLengthValidator
OPTIONS:
min_length: 2
min_length: 8
- NAME: common.djangoapps.util.password_policy_validators.MaximumLengthValidator
OPTIONS:
max_length: 75
Expand Down

0 comments on commit 60d6cfd

Please sign in to comment.