RegExp for authentication fixed.

This commit is contained in:
Rodrigo Rodriguez 2018-09-26 21:56:17 -03:00
parent 936c2cb9dc
commit 3764925a58

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;