Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ public static class OAuthProviderExtensions
public static OAuthProvider GetAuthenticationProvider(this string providerString)
{
switch (providerString)
{
case "Azure Active Directory v2":
{
case "Azure Active Directory":
case "Azure Active Directory v2":
return OAuthProvider.AzureAD;
case "Google":
return OAuthProvider.Google;
Expand Down