From fc53e1f0e2d46b69bd11b5436f4ee8e4a7eff6e0 Mon Sep 17 00:00:00 2001
From: Sipachev Igor <sipachev@sveak.com>
Date: Mon, 24 Feb 2025 21:36:25 +0700
Subject: [PATCH] feat(jwt): add helpers2`

---
 jwt.go | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/jwt.go b/jwt.go
index 72002c5..89eafb6 100644
--- a/jwt.go
+++ b/jwt.go
@@ -15,6 +15,8 @@ import (
 const (
 	AccessType  = "access"
 	RefreshType = "refresh"
+
+	TFAStep = "tfa"
 )
 
 func CreateRefreshTokenByAccess(accessClaims JWT, ttl time.Duration) JWT {
@@ -75,8 +77,8 @@ func (j *JWT) WithAuthorizationInfo(tai TokenAuthorizationInfo, secret string) *
 	return j
 }
 
-func (j *JWT) WithTFAStep(tai TokenAuthorizationInfo, secret string) *JWT {
-	j.Step = "tfa"
+func (j *JWT) WithTFAStep() *JWT {
+	j.Step = TFAStep
 	return j
 }
 
@@ -94,7 +96,7 @@ func (j *JWT) IsRefreshToken() bool {
 }
 
 func (j *JWT) IsTFAStep() bool {
-	return j.Step == "tfa"
+	return j.Step == TFAStep
 }
 
 func (j *JWT) CheckAccess() bool {