From 7be06a476111ce73d8ca608e0a37706648198479 Mon Sep 17 00:00:00 2001 From: lhhyung Date: Tue, 14 Jan 2025 15:37:40 +0900 Subject: [PATCH] fix:Remove password field from UserProfile Update Signed-off-by: lhhyung --- proto/spaceone/api/identity/v2/user_profile.proto | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/proto/spaceone/api/identity/v2/user_profile.proto b/proto/spaceone/api/identity/v2/user_profile.proto index b85fd0e5..5be3e7ee 100644 --- a/proto/spaceone/api/identity/v2/user_profile.proto +++ b/proto/spaceone/api/identity/v2/user_profile.proto @@ -101,17 +101,15 @@ service UserProfile { message UpdateUserProfileRequest { // +optional - string password = 1; + string name = 1; // +optional - string name = 2; - // +optional - string email = 3; + string email = 2; // +optional - string language = 4; + string language = 3; // +optional - string timezone = 5; + string timezone = 4; // +optional - google.protobuf.Struct tags = 6; + google.protobuf.Struct tags = 5; } //{