mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01: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;
 |