feat(api): API tokens for authentication

Create and managed simple API tokens for access to the API from external
tools.
This commit is contained in:
Julian Tölle 2023-02-19 16:16:34 +01:00
parent eda89716ef
commit 8f7eebb806
15 changed files with 614 additions and 154 deletions

View file

@ -2,6 +2,7 @@ export enum AuthStrategy {
// Internal
AccessToken = "access_token",
RefreshToken = "refresh_token",
ApiToken = "api_token",
// Auth Provider
Spotify = "spotify",