Skip to content
Snippets Groups Projects
Commit 48d1e1b9 authored by Christian Boettcher's avatar Christian Boettcher
Browse files

fix error when non-admin uses SSO

parent 7b202856
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ class UnityIntegrationView(AppBuilderBaseView):
persistent_identifier = user["sub"]
first_name = user["firstname"]
last_name = user["surname"]
admin_access = user.get('eflows:dlsAccess', False)
admin_access = user.get('eflows:dlsAccess', 'False')
log.debug("SSO user logging in...")
log.debug("sub : " + persistent_identifier)
......
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