mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
Create and managed simple API tokens for access to the API from external tools.
9 lines
178 B
TypeScript
9 lines
178 B
TypeScript
export enum AuthStrategy {
|
|
// Internal
|
|
AccessToken = "access_token",
|
|
RefreshToken = "refresh_token",
|
|
ApiToken = "api_token",
|
|
|
|
// Auth Provider
|
|
Spotify = "spotify",
|
|
}
|