mirror of
https://gitlab.com/foxixus/neomovies-api.git
synced 2025-10-28 01:48:51 +05:00
- Add refresh token support with 30-day expiry - Implement automatic token rotation on refresh - Add new endpoints: /auth/refresh, /auth/revoke-token, /auth/revoke-all-tokens - Reduce access token lifetime to 1 hour for better security - Store refresh tokens in user document with metadata - Add support for token cleanup and management - Update login flow to return both access and refresh tokens - Maintain backward compatibility with existing auth methods
8 lines
109 B
Go
8 lines
109 B
Go
package handlers
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
func uuidNew() string { return uuid.New().String() }
|