Skip to content
Snippets Groups Projects
Commit b3471a83 authored by Prasad's avatar Prasad
Browse files

Fixes #1643: password strong check fixed when not configured

parent 13d5ba8b
No related branches found
No related tags found
No related merge requests found
......@@ -407,6 +407,7 @@ var vtUtils = {
var isStrong = strongPasswordRegex.test(password)? true : false;
return isStrong;
}
return false;
// If password regex is not set - consider it as strong.
return true;
},
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment