mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 17:57:33 +00:00
fix(management): allow emty email in resend initialization email (#2592)
This commit is contained in:
@@ -3165,7 +3165,7 @@ message UpdateHumanEmailResponse {
|
||||
|
||||
message ResendHumanInitializationRequest {
|
||||
string user_id = 1 [(validate.rules).string = {min_len: 1, max_len: 200}];
|
||||
string email = 2 [(validate.rules).string.email = true];
|
||||
string email = 2 [(validate.rules).string = {ignore_empty: true, email: true}];
|
||||
}
|
||||
|
||||
message ResendHumanInitializationResponse {
|
||||
|
Reference in New Issue
Block a user