Archived
2

changed allowed characters for username

This commit is contained in:
VLE2FE 2020-05-14 16:54:58 +02:00
parent 529cbb7115
commit c137a0f610

View File

@ -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()