mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-07-18 08:49:54 +00:00
9 lines
330 B
Go
9 lines
330 B
Go
package common
|
|
|
|
// AuthenticationMethodsClaim is the JWT claim ("amr") used to identify how the user
|
|
// authenticated. It is shared between the session JWTs and the OIDC tokens.
|
|
const AuthenticationMethodsClaim = "amr"
|
|
|
|
// TokenTypeClaim is the JWT claim ("type") used to identify the type of token.
|
|
const TokenTypeClaim = "type"
|