mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-04 00:18:01 +01:00
6c21ed5f74
This makes maintenance-related 503s more intuitive on our UI by mentioning that maintenance banner is currently enabled. ![image](https://github.com/Unleash/unleash/assets/14320932/43142c58-6b87-4b2d-9239-50f2bb1409e6)
8 lines
208 B
TypeScript
8 lines
208 B
TypeScript
export const BAD_REQUEST = 400;
|
|
export const OK = 200;
|
|
export const CREATED = 201;
|
|
export const NOT_FOUND = 404;
|
|
export const FORBIDDEN = 403;
|
|
export const UNAUTHORIZED = 401;
|
|
export const UNAVAILABLE = 503;
|