Skip to content

Commit

Permalink
fix: linting with gofmt
Browse files Browse the repository at this point in the history
Signed-off-by: Cedric-Magnan <[email protected]>
  • Loading branch information
Cedric-Magnan authored and Alex Palesandro committed Sep 11, 2023
1 parent b991018 commit 3c0ee25
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions server/oauth2.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,12 +145,12 @@ const (
)

const (
responseTypeCode = "code" // "Regular" flow
responseTypeToken = "token" // Implicit flow for frontend apps.
responseTypeIDToken = "id_token" // ID Token in url fragment
responseTypeCodeToken = "code token" // "Regular" flow + Implicit flow
responseTypeCodeIDToken = "code id_token" // "Regular" flow + ID Token
responseTypeIDTokenToken = "id_token token" // ID Token + Implicit flow
responseTypeCode = "code" // "Regular" flow
responseTypeToken = "token" // Implicit flow for frontend apps.
responseTypeIDToken = "id_token" // ID Token in url fragment
responseTypeCodeToken = "code token" // "Regular" flow + Implicit flow
responseTypeCodeIDToken = "code id_token" // "Regular" flow + ID Token
responseTypeIDTokenToken = "id_token token" // ID Token + Implicit flow
responseTypeCodeIDTokenToken = "code id_token token" // "Regular" flow + ID Token + Implicit flow
)

Expand Down

0 comments on commit 3c0ee25

Please sign in to comment.