From d2f7826eb32f6788d6e983bd54cf2c62e2072928 Mon Sep 17 00:00:00 2001 From: Sipachev Igor Date: Sun, 23 Feb 2025 17:14:26 +0700 Subject: [PATCH] feat(jwt): add step to jwt payload for tfa flow --- jwt.go | 1 + 1 file changed, 1 insertion(+) diff --git a/jwt.go b/jwt.go index 928f9b8..e334c81 100644 --- a/jwt.go +++ b/jwt.go @@ -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 }