summaryrefslogtreecommitdiff
path: root/pkg/dto/grant_type.go
blob: fd2cb432cd2c15f4fa8e152076b50ca5bb6d5ca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package dto

type GrantType int

const (
	AuthorizationCode GrantType = iota
	Implicit
	Password
	ClientCredentials
	RefreshToken
	JWTBearer
	SAML2Bearer
)