Listory/src/auth/strategies/strategies.enum.ts
Julian Tölle 8f7eebb806 feat(api): API tokens for authentication
Create and managed simple API tokens for access to the API from external
tools.
2023-02-19 16:19:40 +01:00

9 lines
178 B
TypeScript

export enum AuthStrategy {
// Internal
AccessToken = "access_token",
RefreshToken = "refresh_token",
ApiToken = "api_token",
// Auth Provider
Spotify = "spotify",
}