fix: Add db scanner methods for SpaceDelimitedArray (#194)
This commit is contained in:
parent
8dd5c87faa
commit
5fb36bf4c2
3 changed files with 76 additions and 0 deletions
|
@ -32,6 +32,11 @@ const (
|
|||
ClientAssertionTypeJWTAssertion = "urn:ietf:params:oauth:client-assertion-type:jwt-bearer"
|
||||
)
|
||||
|
||||
var AllGrantTypes = []GrantType{
|
||||
GrantTypeCode, GrantTypeRefreshToken, GrantTypeClientCredentials,
|
||||
GrantTypeBearer, GrantTypeTokenExchange, GrantTypeImplicit,
|
||||
ClientAssertionTypeJWTAssertion}
|
||||
|
||||
type GrantType string
|
||||
|
||||
type TokenRequest interface {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue