mirror of
https://github.com/20kaushik02/spotify-manager-web.git
synced 2025-12-06 08:14:07 +00:00
16 lines
719 B
TypeScript
16 lines
719 B
TypeScript
export const backendDomain = process.env.REACT_APP_API_BASE_URL + "/";
|
|
export const spotifyPlaylistLinkPrefix = "https://open.spotify.com/playlist/";
|
|
|
|
export const authLoginURL = backendDomain + "api/auth/login";
|
|
export const authLogoutURL = backendDomain + "api/auth/logout";
|
|
|
|
export const authHealthCheckURL = "auth-health";
|
|
export const authRefreshURL = "api/auth/refresh";
|
|
|
|
export const opFetchGraphURL = "api/operations/fetch";
|
|
export const opUpdateUserDataURL = "api/operations/update";
|
|
export const opCreateLinkURL = "api/operations/link";
|
|
export const opDeleteLinkURL = opCreateLinkURL;
|
|
export const opBackfillLinkURL = "api/operations/populate/link";
|
|
export const opPruneLinkURL = "api/operations/prune/link";
|