Skip to content

Commit

Permalink
Adding oauth to auth methods
Browse files Browse the repository at this point in the history
  • Loading branch information
javuto committed Oct 17, 2023
1 parent d4a99ea commit a77cf5a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions settings/settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@ const (

// Types of authentication
const (
AuthNone string = "none"
AuthJSON string = "json"
AuthDB string = "db"
AuthSAML string = "saml"
AuthJWT string = "jwt"
AuthNone string = "none"
AuthJSON string = "json"
AuthDB string = "db"
AuthSAML string = "saml"
AuthJWT string = "jwt"
AuthOAuth2 string = "oauth2"
)

// Types of logging
Expand Down

0 comments on commit a77cf5a

Please sign in to comment.