mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-02 01:17:58 +02:00
This makes maintenance-related 503s more intuitive on our UI by mentioning that maintenance banner is currently enabled. 
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;
|