Compare commits

...

1 Commits

Author SHA1 Message Date
e065799edc Jwt token expiration time extended from 2 to 24h
All checks were successful
Build Feedmee Go Backend App / build-and-push (push) Successful in 1m34s
Build Feedmee Next.js Frontend App / build-and-push (push) Successful in 2m27s
2025-10-29 12:44:50 +01:00

View File

@@ -14,7 +14,7 @@ func generateToken(userID int, username string) (string, error) {
claims := jwt.MapClaims{
"user_id": userID,
"username": username,
"exp": time.Now().Add(2 * time.Hour).Unix(),
"exp": time.Now().Add(24 * time.Hour).Unix(),
}
token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
return token.SignedString(jwtSecret)