Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
configuration
Commits
bf1540d4
Commit
bf1540d4
authored
Aug 04, 2017
by
tasawernawaz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
password min and max length constraints added
LEARNER-1492
parent
bfad917f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
CHANGELOG.md
+3
-0
playbooks/roles/edxapp/defaults/main.yml
+6
-0
No files found.
CHANGELOG.md
View file @
bf1540d4
...
...
@@ -356,3 +356,6 @@
-
Remove EDXAPP_ANALYTICS_API_KEY, EDXAPP_ANALYTICS_SERVER_URL, EDXAPP_ANALYTICS_DATA_TOKEN, EDXAPP_ANALYTICS_DATA_URL since they are old and
no longer consumed.
-
Role: edxapp
-
Added
`PASSWORD_MIN_LENGTH`
for password minimum length validation on reset page.
-
Added
`PASSWORD_MAX_LENGTH`
for password maximum length validation on reset page.
playbooks/roles/edxapp/defaults/main.yml
View file @
bf1540d4
...
...
@@ -706,6 +706,10 @@ EDXAPP_ICP_LICENSE: !!null
# Base Cookie Domain to share cookie across edx domains
EDXAPP_BASE_COOKIE_DOMAIN
:
"
{{
EDXAPP_LMS_SITE_NAME
}}"
# The minimum and maximum length for the password account field
EDXAPP_PASSWORD_MIN_LENGTH
:
2
EDXAPP_PASSWORD_MAX_LENGTH
:
75
#-------- Everything below this line is internal to the role ------------
#Use YAML references (& and *) and hash merge <<: to factor out shared settings
...
...
@@ -1157,6 +1161,8 @@ lms_env_config:
CELERY_QUEUES
:
"
{{
EDXAPP_LMS_CELERY_QUEUES
}}"
ALTERNATE_WORKER_QUEUES
:
"
cms"
ENTERPRISE_COURSE_ENROLLMENT_AUDIT_MODES
:
"
{{
EDXAPP_ENTERPRISE_COURSE_ENROLLMENT_AUDIT_MODES
}}"
PASSWORD_MIN_LENGTH
:
"
{{
EDXAPP_PASSWORD_MIN_LENGTH
}}"
PASSWORD_MAX_LENGTH
:
"
{{
EDXAPP_PASSWORD_MAX_LENGTH
}}"
cms_auth_config
:
<<
:
*edxapp_generic_auth
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment