Listory/src/auth/strategies/strategies.enum.ts

10 lines
178 B
TypeScript
Raw Normal View History

2020-09-05 23:35:53 +02:00
export enum AuthStrategy {
// Internal
AccessToken = "access_token",
RefreshToken = "refresh_token",
ApiToken = "api_token",
2020-09-05 23:35:53 +02:00
// Auth Provider
Spotify = "spotify",
}