Fix: maestro id min length

This commit is contained in:
2019-06-03 11:37:28 +09:00
parent bda10ea105
commit 43e7b85f72
+1 -1
View File
@@ -1,5 +1,5 @@
function AccountValidator() { function AccountValidator() {
this.patternMaestroID = /^[A-Za-z가-힣]{1}[A-Za-z0-9가-힣]{2,19}$/; this.patternMaestroID = /^[A-Za-z가-힣]{1}[A-Za-z0-9가-힣]{3,19}$/;
this.patternMaestroPW = /^[A-Za-z0-9]{4,16}$/; this.patternMaestroPW = /^[A-Za-z0-9]{4,16}$/;
this.patternPlayerID = /^[A-Za-z0-9가-힣-_]{1,8}$/; this.patternPlayerID = /^[A-Za-z0-9가-힣-_]{1,8}$/;