Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
RedirectURIPattern string `json:"redirect_uri_pattern,omitempty"`
SecretHash string `json:"secret_hash,omitempty"`
PresetID string `json:"preset,omitempty"`
DisableImplicit bool `json:"disable_implicit,omitempty"`
EnableRefreshTokenRotation bool `json:"enable_refresh_token_rotation,omitempty"`
}
type Store ¶
type Store interface {
Authenticate(clientID, clientSecret string) (*Client, error)
Lookup(clientID string) (*Client, error)
List() ([]string, error)
Ping() error
}
func NewInMemoryStore ¶ added in v0.8.0
func NewSqlStore ¶
type StoreSettings ¶
Click to show internal directories.
Click to hide internal directories.