RegExp for authentication fixed.

This commit is contained in:
Rodrigo Rodriguez 2018-09-26 21:56:17 -03:00
parent ab1f1feb12
commit 31aaaec9d6

View file

@ -39,7 +39,7 @@ const UrlJoin = require("url-join");
export class GBAdminService {
public static StrongRegex = new RegExp(
"^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#$%^&*])(?=.{8,})"
"^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#\$%\^&\*])(?=.{8,})"
);
core: IGBCoreService;