1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-08-08 22:46:33 +02:00

Added ADFS Provider

This commit is contained in:
Sami Racho
2021-06-13 10:00:12 +02:00
parent 381ac91752
commit a14c0c2121
8 changed files with 347 additions and 2 deletions

View File

@ -33,6 +33,8 @@ func New(provider string, p *ProviderData) Provider {
return NewKeycloakProvider(p)
case "azure":
return NewAzureProvider(p)
case "adfs":
return NewADFSProvider(p)
case "gitlab":
return NewGitLabProvider(p)
case "oidc":