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
7324a07438ee
Commit
7324a07438ee
authored
9 years ago
by
Vincent Hatakeyama
Browse files
Options
Downloads
Patches
Plain Diff
admin can have a password on top of saml connection
parent
24a71db8c265
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+5
-0
5 additions, 0 deletions
NEWS
model/res_users.py
+4
-2
4 additions, 2 deletions
model/res_users.py
with
9 additions
and
2 deletions
NEWS
+
5
−
0
View file @
7324a074
next
====
* admin can have a password on top of saml connection.
next
====
...
...
This diff is collapsed.
Click to expand it.
model/res_users.py
+
4
−
2
View file @
7324a074
...
...
@@ -28,7 +28,7 @@
password.
"""
if
self
.
_allow_saml_uid_and_internal_password
(
cr
,
context
):
if
self
.
_allow_saml_uid_and_internal_password
(
cr
,
uid
,
context
):
# The constraint is a no-op in this case.
return
True
...
...
@@ -212,7 +212,9 @@
cr
,
uid
,
ids
,
vals
,
context
=
context
)
def
_allow_saml_uid_and_internal_password
(
self
,
cr
,
context
):
def
_allow_saml_uid_and_internal_password
(
self
,
cr
,
uid
,
context
):
if
uid
==
SUPERUSER_ID
:
return
true
setting_obj
=
self
.
pool
[
'
base.config.settings
'
]
return
setting_obj
.
allow_saml_uid_and_internal_password
(
cr
,
context
=
context
...
...
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