mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
0116506330
This adds the amr claim which stores methods used to authenticate with Authelia by the users session.
15 lines
349 B
Go
15 lines
349 B
Go
package model
|
|
|
|
// OIDCWorkflowSession represent an OIDC workflow session.
|
|
type OIDCWorkflowSession struct {
|
|
ClientID string
|
|
RequestedScopes []string
|
|
GrantedScopes []string
|
|
RequestedAudience []string
|
|
GrantedAudience []string
|
|
TargetURI string
|
|
AuthURI string
|
|
Require2FA bool
|
|
CreatedTimestamp int64
|
|
}
|