Password Regex

You can now setup a regex on each of your catalogs to control your users password length and mandatory characters.

Add the desired regex to your catalog settings

passwordregex: ^(?=.*[A-Za-z])(?=.*\d)[A-Za-z\d]{8,}$

This will check that the passwords respect the following rules, 8 character long minimum and at least one letter and one number.