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
828d9868
Commit
828d9868
authored
7 years ago
by
Tasawer Nawaz
Committed by
GitHub
7 years ago
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4031 from edx/tasawer/learner-1492-add-password-min-and-max-settings
password min and max length constraints added
parents
ea7838f4
bf1540d4
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 @
828d9868
...
@@ -356,3 +356,6 @@
...
@@ -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
-
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.
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.
This diff is collapsed.
Click to expand it.
playbooks/roles/edxapp/defaults/main.yml
View file @
828d9868
...
@@ -706,6 +706,10 @@ EDXAPP_ICP_LICENSE: !!null
...
@@ -706,6 +706,10 @@ EDXAPP_ICP_LICENSE: !!null
# Base Cookie Domain to share cookie across edx domains
# Base Cookie Domain to share cookie across edx domains
EDXAPP_BASE_COOKIE_DOMAIN
:
"
{{
EDXAPP_LMS_SITE_NAME
}}"
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 ------------
#-------- Everything below this line is internal to the role ------------
#Use YAML references (& and *) and hash merge <<: to factor out shared settings
#Use YAML references (& and *) and hash merge <<: to factor out shared settings
...
@@ -1157,6 +1161,8 @@ lms_env_config:
...
@@ -1157,6 +1161,8 @@ lms_env_config:
CELERY_QUEUES
:
"
{{
EDXAPP_LMS_CELERY_QUEUES
}}"
CELERY_QUEUES
:
"
{{
EDXAPP_LMS_CELERY_QUEUES
}}"
ALTERNATE_WORKER_QUEUES
:
"
cms"
ALTERNATE_WORKER_QUEUES
:
"
cms"
ENTERPRISE_COURSE_ENROLLMENT_AUDIT_MODES
:
"
{{
EDXAPP_ENTERPRISE_COURSE_ENROLLMENT_AUDIT_MODES
}}"
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
:
cms_auth_config
:
<<
:
*edxapp_generic_auth
<<
:
*edxapp_generic_auth
...
...
This diff is collapsed.
Click to expand it.
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