Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
889445a2
Unverified
Commit
889445a2
authored
5 years ago
by
Aarif
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #21790 from edx/BOM-741
BOM-741
parents
5597a86a
eb694a71
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openedx/core/djangoapps/password_policy/forms.py
+5
-2
5 additions, 2 deletions
openedx/core/djangoapps/password_policy/forms.py
with
5 additions
and
2 deletions
openedx/core/djangoapps/password_policy/forms.py
+
5
−
2
View file @
889445a2
...
...
@@ -2,6 +2,9 @@
Forms for the password policy app.
"""
from
__future__
import
absolute_import
import
six
from
django.contrib
import
messages
from
django.contrib.admin.forms
import
AdminAuthenticationForm
from
django.forms
import
ValidationError
...
...
@@ -25,9 +28,9 @@ class PasswordPolicyAwareAdminAuthForm(AdminAuthenticationForm):
password_policy_compliance
.
enforce_compliance_on_login
(
self
.
user_cache
,
cleaned_data
[
'
password
'
])
except
password_policy_compliance
.
NonCompliantPasswordWarning
as
e
:
# Allow login, but warn the user that they will be required to reset their password soon.
messages
.
warning
(
self
.
request
,
e
.
messag
e
)
messages
.
warning
(
self
.
request
,
six
.
text_type
(
e
)
)
except
password_policy_compliance
.
NonCompliantPasswordException
as
e
:
# Prevent the login attempt.
raise
ValidationError
(
e
.
messag
e
)
raise
ValidationError
(
six
.
text_type
(
e
)
)
return
cleaned_data
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment