feat(jwt): add step to jwt payload for tfa flow

This commit is contained in:
Sipachev Igor 2025-02-23 17:14:26 +07:00
parent 340bbe1882
commit d2f7826eb3

1
jwt.go
View File

@ -40,6 +40,7 @@ type JWT struct {
Type string `json:"t"`
SessionId string `json:"si,omitempty"`
AuthorizationInfo string `json:"ai,omitempty"`
Step string `json:"step,omitempty"`
jwt.RegisteredClaims
}