consts.ts 368 B

1234567891011
  1. export enum API {
  2. LOGIN = "/api/auth/login",
  3. SIGNUP = "/api/auth/signup",
  4. REPORT = "/api/url/report",
  5. RESET_PASSWORD = "/api/auth/resetpassword",
  6. CHANGE_PASSWORD = "/api/auth/changepassword",
  7. BAN_LINK = "/api/url/admin/ban",
  8. CUSTOM_DOMAIN = "/api/url/customdomain",
  9. GENERATE_APIKEY = "/api/auth/generateapikey",
  10. SETTINGS = "/api/auth/usersettings"
  11. }