Is it possible to use data validator’s for the “password” property in the User table?
I want to enforce a minimum length of 6 characters so I tried .{6,} and [A-Za-z0-9]{6,} but I was able to successfully register both times with passwords less than 6 characters. However, if I set it to something more simple like \d\d\d I would get the error “Validation for the password property failed. Property value does not match the required pattern.” even with the passwords 11 and 111.