Skip to content

Commit

Permalink
spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
alldoami committed Dec 17, 2024
1 parent 7ae2a99 commit 7de7eb0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion oidc_cli/oidc_impl/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,12 @@ func NewClient(ctx context.Context, config *Config, clientOptions ...Option) (*C
ClientID: config.ClientID,
RedirectURL: fmt.Sprintf("http://localhost:%d", server.GetBoundPort()),
Endpoint: provider.Endpoint(),
Scopes: []string{oidc.ScopeOpenID, oidc.ScopeOfflineAccess, "email", "groups"},
Scopes: []string{
oidc.ScopeOpenID,
oidc.ScopeOfflineAccess,
"email",
"groups",
},
}

oidcConfig := &oidc.Config{
Expand Down

0 comments on commit 7de7eb0

Please sign in to comment.