Skip to content

Commit

Permalink
Fix default scopes (#1933)
Browse files Browse the repository at this point in the history
* Fix scopes
  • Loading branch information
zahalzel authored Jun 13, 2022
1 parent 5eab606 commit 8ee553e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public AzureAdBlock UpdateFromJToken(JToken azureAdToken)
TenantId = TenantId ?? DefaultProperties.TenantId,
ClientId = ClientId ?? DefaultProperties.ClientId,
CallbackPath = CallbackPath ?? DefaultProperties.CallbackPath,
Scopes = Scopes ?? DefaultProperties.MicrosoftGraphScopes,
Scopes = Scopes ?? DefaultProperties.ApiScopes,
ClientSecret = ClientSecret ?? DefaultProperties.ClientSecret,
ClientCertificates = ClientCertificates ?? Array.Empty<string>()
};
Expand Down

0 comments on commit 8ee553e

Please sign in to comment.