Fix: allow korean maestro id

This commit is contained in:
2018-09-03 09:36:06 +09:00
parent 8cf7f67ac6
commit e9da9b9bba
4 changed files with 11 additions and 6 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
class AccountValidator {
constructor() {
this.patternMaestroID = /^[A-Za-z]{1}[A-Za-z0-9]{3,19}$/;
this.patternMaestroID = /^[A-Za-z가-힣]{1}[A-Za-z0-9가-힣]{2,19}$/;
this.patternMaestroPW = /^[A-Za-z0-9]{4,16}$/;
this.patternPlayerID = /^[A-Za-z0-9가-힣-_]{1,8}$/;