changed allowed characters for username
This commit is contained in:
		@@ -5,9 +5,9 @@ import IdValidate from './id';
 | 
			
		||||
 | 
			
		||||
export default class UserValidate {  // validate input for user
 | 
			
		||||
  private static user = {
 | 
			
		||||
    name: Joi.string()  // TODO: check allowed characters
 | 
			
		||||
      .alphanum()
 | 
			
		||||
    name: Joi.string()
 | 
			
		||||
      .lowercase()
 | 
			
		||||
      .pattern(new RegExp('^[a-z0-9-_.]+$'))
 | 
			
		||||
      .max(128),
 | 
			
		||||
 | 
			
		||||
    email: Joi.string()
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user