mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-09 23:20:27 +00:00
Azure oauth: Graph api calls it mail, not email
This commit is contained in:
parent
b8442c4c5c
commit
b03cbdea65
@ -218,8 +218,8 @@ def login():
|
|||||||
azure_username = me["userPrincipalName"]
|
azure_username = me["userPrincipalName"]
|
||||||
azure_givenname = me["givenName"]
|
azure_givenname = me["givenName"]
|
||||||
azure_familyname = me["surname"]
|
azure_familyname = me["surname"]
|
||||||
if "email" in me:
|
if "mail" in me:
|
||||||
azure_email = me["email"]
|
azure_email = me["mail"]
|
||||||
else:
|
else:
|
||||||
azure_email = ""
|
azure_email = ""
|
||||||
if not azure_email:
|
if not azure_email:
|
||||||
|
Loading…
Reference in New Issue
Block a user