Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
auth_saml
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
XCG
Odoo modules
auth_saml
Commits
5ac61bcbc5f5
Commit
5ac61bcbc5f5
authored
8 years ago
by
Houzefa Abbasbhay
Browse files
Options
Downloads
Patches
Plain Diff
Don't clear out the pass of the Odoo admin.
Suggested by petrus-v on <
https://github.com/OCA/server-tools/pull/274
>.
parent
12b7ff5c71cf
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
model/res_users.py
+9
-2
9 additions, 2 deletions
model/res_users.py
with
9 additions
and
2 deletions
model/res_users.py
+
9
−
2
View file @
5ac61bcb
...
...
@@ -262,8 +262,15 @@
ID (as they can
'
t cohabit).
"""
if
vals
and
vals
.
get
(
'
saml_uid
'
):
if
not
self
.
_allow_saml_and_password
():
# Clear out the pass when:
# - An SAML ID is being set.
# - The user is not the Odoo admin.
# - The "allow both" setting is disabled.
if
(
vals
and
vals
.
get
(
'
saml_uid
'
)
and
self
.
id
is
not
SUPERUSER_ID
and
not
self
.
_allow_saml_and_password
()
):
vals
.
update
({
'
password
'
:
False
,
'
password_crypt
'
:
False
,
...
...
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