Skip to content
Snippets Groups Projects
Commit 7324a07438ee authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

admin can have a password on top of saml connection

parent 24a71db8c265
No related branches found
No related tags found
No related merge requests found
next
====
* admin can have a password on top of saml connection.
next
====
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment