mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	provides a more helpful error msg when a new feature is created with an existing name
This commit is contained in:
		
							parent
							
								
									3c3def8d99
								
							
						
					
					
						commit
						743a597f42
					
				@ -20,7 +20,7 @@ const handleErrors = (req, res, error) => {
 | 
			
		||||
        case NameExistsError:
 | 
			
		||||
            return res
 | 
			
		||||
                .status(403)
 | 
			
		||||
                .json([{ msg: `A feature named '${req.body.name}' already exists.` }])
 | 
			
		||||
                .json([{ msg: 'A feature with this name already exists. Try re-activating it from the archive.' }])
 | 
			
		||||
                .end();
 | 
			
		||||
        case ValidationError:
 | 
			
		||||
            return res
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user