From 65f670ad1fb77d5934ae56ff84ede4494bc4dee1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20B=C3=B6ttcher?= <c.boettcher@fz-juelich.de> Date: Tue, 7 Mar 2023 12:57:14 +0100 Subject: [PATCH] update value keys --- plugins/unity_integration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/unity_integration.py b/plugins/unity_integration.py index 3c7f33c..8ff209c 100644 --- a/plugins/unity_integration.py +++ b/plugins/unity_integration.py @@ -45,8 +45,8 @@ class UnityIntegrationView(AppBuilderBaseView): log.debug(str(user)) email = user['email'] persistent_identifier = user["sub"] - first_name = user["given_name"] - last_name = user["family_name"] + first_name = user["firstname"] + last_name = user["surname"] admin_access = user.get('eflows:dlsAccess', False) log.debug("SSO user logging in...") -- GitLab