Merge pull request #1515 from flant/atlassian-crowd-connector

new connector for Atlassian Crowd
This commit is contained in:
Nándor István Krácser
2020-02-24 10:09:27 +01:00
committed by GitHub
6 changed files with 650 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ import (
"golang.org/x/crypto/bcrypt"
"github.com/dexidp/dex/connector"
"github.com/dexidp/dex/connector/atlassiancrowd"
"github.com/dexidp/dex/connector/authproxy"
"github.com/dexidp/dex/connector/bitbucketcloud"
"github.com/dexidp/dex/connector/github"
@@ -477,6 +478,7 @@ var ConnectorsConfig = map[string]func() ConnectorConfig{
"microsoft": func() ConnectorConfig { return new(microsoft.Config) },
"bitbucket-cloud": func() ConnectorConfig { return new(bitbucketcloud.Config) },
"openshift": func() ConnectorConfig { return new(openshift.Config) },
"atlassian-crowd": func() ConnectorConfig { return new(atlassiancrowd.Config) },
// Keep around for backwards compatibility.
"samlExperimental": func() ConnectorConfig { return new(saml.Config) },
}