From dc3493cba0f1f5ac76fbce57fbda7fa2a727c953 Mon Sep 17 00:00:00 2001 From: Silvan Date: Thu, 28 Oct 2021 17:13:46 +0200 Subject: [PATCH] fix(management): allow emty email in resend initialization email (#2592) --- proto/zitadel/management.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/zitadel/management.proto b/proto/zitadel/management.proto index 18f0553eab..a31d33a36e 100644 --- a/proto/zitadel/management.proto +++ b/proto/zitadel/management.proto @@ -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 {