removed session id from access token

This commit is contained in:
nquidox 2025-09-10 19:26:54 +03:00
parent c657a3a7da
commit a8c974994b
2 changed files with 5 additions and 14 deletions

View file

@ -8,5 +8,5 @@ import (
type JWTProvider interface {
CreateAccessToken(userUuid, sessionUuid string) (string, error)
CreateRefreshToken(refreshUuid string, expires time.Time) *http.Cookie
Parse(token string) (string, string, error)
Parse(token string) (string, error)
}