feat: connector for Atlassian Crowd

This commit is contained in:
Ivan Mikheykin
2019-08-09 16:05:50 +03:00
committed by m.nabokikh
parent 0f1927a1ba
commit 7ef1179e75
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"
@@ -471,6 +472,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) },
}