mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2024-11-24 08:52:25 +02:00
Adjust GitLab options configuration
This commit is contained in:
parent
3092941c57
commit
c84a5a418f
@ -276,13 +276,11 @@ func parseProviderInfo(o *options.Options, msgs []string) []string {
|
||||
msgs = append(msgs, "oidc provider requires an oidc issuer URL")
|
||||
}
|
||||
case *providers.GitLabProvider:
|
||||
p.Groups = o.Providers[0].GitLabConfig.Group
|
||||
err := p.AddProjects(o.Providers[0].GitLabConfig.Projects)
|
||||
p.SetAllowedGroups(o.Providers[0].GitLabConfig.Group)
|
||||
err := p.SetAllowedProjects(o.Providers[0].GitLabConfig.Projects)
|
||||
if err != nil {
|
||||
msgs = append(msgs, "failed to setup gitlab project access level")
|
||||
}
|
||||
p.SetAllowedGroups(p.PrefixAllowedGroups())
|
||||
p.SetProjectScope()
|
||||
|
||||
if p.Verifier == nil {
|
||||
// Initialize with default verifier for gitlab.com
|
||||
|
@ -228,7 +228,7 @@ var _ = Describe("Gitlab Provider Tests", func() {
|
||||
p.SetAllowedGroups(in.allowedGroups)
|
||||
|
||||
err := p.SetAllowedProjects(in.allowedProjects)
|
||||
if err == nil {
|
||||
if in.expectedError == nil {
|
||||
Expect(err).To(BeNil())
|
||||
} else {
|
||||
Expect(err).To(MatchError(in.expectedError))
|
||||
|
Loading…
Reference in New Issue
Block a user