Skip to content

Commit 8d796d3

Browse files
committed
Fix Go formatting treewide
1 parent 25f1535 commit 8d796d3

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

identifier/models.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ type Consent struct {
158158
}
159159

160160
// Scopes returns the associated consents approved scopes filtered by the
161-
//provided requested scopes and the full unfiltered approved scopes table.
161+
// provided requested scopes and the full unfiltered approved scopes table.
162162
func (c *Consent) Scopes(requestedScopes map[string]bool) (map[string]bool, map[string]bool) {
163163
scopes := make(map[string]bool)
164164
if c.RawScope != "" {

identity/clients/registry.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ func NewRegistry(ctx context.Context, trustedURI *url.URL, registrationConfFilep
8989
validateErr := client.Validate()
9090
registerErr := r.Register(client)
9191
fields := logrus.Fields{
92-
"client_id": client.ID,
93-
"with_client_secret": client.Secret != "",
94-
"trusted": client.Trusted,
95-
"insecure": client.Insecure,
96-
"application_type": client.ApplicationType,
92+
"client_id": client.ID,
93+
"with_client_secret": client.Secret != "",
94+
"trusted": client.Trusted,
95+
"insecure": client.Insecure,
96+
"application_type": client.ApplicationType,
9797
"redirect_uris": client.RedirectURIs,
9898
"origins": client.Origins,
9999
"external_authorize_redirect_uris": client.ExternalAuthorizeRedirectURIs,

0 commit comments

Comments
 (0)