mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-17 20:12:12 +00:00
feat: check passwordpolicy on login (#477)
* fix: password complexity policy * feat: check password policy * feat: check password policy * fix: password policy on password change * fix: remove double policy check * feat: check pw policy on register * feat: check pw policy on init * fix: hover on secondary buttons * fix: use data set instead of hidden inputs * fix: disabled button * fix: en login * fix: read policy * feat: check if org exists * multiple checks * feat: validate all forms * fix: check all forms * fix: remove unused err Co-authored-by: Livio Amstutz <livio.a@gmail.com>
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -1702,7 +1702,7 @@ message PasswordComplexityPolicy {
|
||||
|
||||
message PasswordComplexityPolicyCreate {
|
||||
string description = 1 [(validate.rules).string = {max_len: 500}];
|
||||
uint64 min_length = 2;
|
||||
uint64 min_length = 2 [(validate.rules).uint64.gt = 0];
|
||||
bool has_lowercase = 3;
|
||||
bool has_uppercase = 4;
|
||||
bool has_number = 5;
|
||||
|
Reference in New Issue
Block a user