Skip to content
Snippets Groups Projects
Commit 025b07c1 authored by Krish Moodbidri's avatar Krish Moodbidri
Browse files

Feat fix fullname value to Displayname

parent 8a46c3a0
No related branches found
No related tags found
1 merge request!58Feat- Set fullname value to Displayname
......@@ -48,10 +48,7 @@ def create_app(config_name):
user = {
"username": request.headers.get("REMOTE_USER"),
"fullname": (
f"{request.headers.get('Givenname')}"
f" {request.headers.get('Sn')}"
),
"fullname": request.headers.get("Displayname"),
"email": request.headers.get("Mail"),
"eppa": request.headers.get("Unscoped-Affiliation"),
}
......
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