1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-22 03:55:36 +01:00

fix: autenticazione Microsoft

This commit is contained in:
Beppe 2024-10-21 13:09:36 +02:00
parent 80322de09a
commit db69f59526

View File

@ -48,6 +48,6 @@ class MicrosoftLogin extends Azure implements ProviderInterface
{
$me = $this->get('https://graph.microsoft.com/v1.0/me', $access_token);
return $me['mail'];
return $me['userPrincipalName'];
}
}