/ frontend / src / api / Endpoints.ts
Endpoints.ts
1  export const LOGIN_ENDPOINT = "/api/core/login";
2  export const LOGIN_PAGE_ENDPOINT = "/login";
3  export const ME_ENDPOINT = "/me";
4  export const USERS_ENDPOINT = "/users";
5  export const CLIENTS_ENDPOINT = "/clients";
6  export const CREATE_CLIENT_ENDPOINT = "/clients/create";
7  export const WHITELIST_ENDPOINT = "/whitelist";
8  export const ROOT_ENDPOINT = "/";