Skip to content

Commit

Permalink
fix: UpdateUserResponse bool
Browse files Browse the repository at this point in the history
  • Loading branch information
bookpanda committed Jun 30, 2024
1 parent 3185825 commit e3627b1
Showing 1 changed file with 19 additions and 20 deletions.
39 changes: 19 additions & 20 deletions rpkm67/auth/user/v1/user.proto
Original file line number Diff line number Diff line change
Expand Up @@ -65,27 +65,26 @@ message FindByEmailResponse{
// Update
message UpdateUserRequest{
string id = 1;
string email = 2;
string nickname = 3;
string title = 4;
string firstname = 5;
string lastname = 6;
int32 year = 7;
string faculty = 8;
string tel = 9;
string parentTel = 10;
string parent = 11;
string foodAllergy = 12;
string drugAllergy = 13;
string illness = 14;
string role = 15;
string photoKey = 16;
string photoUrl = 17;
string baan = 18;
string groupId = 19;
int32 receiveGift = 20;
string nickname = 2;
string title = 3;
string firstname = 4;
string lastname = 5;
int32 year = 6;
string faculty = 7;
string tel = 8;
string parentTel = 9;
string parent = 10;
string foodAllergy = 11;
string drugAllergy = 12;
string illness = 13;
string role = 14;
string photoKey = 15;
string photoUrl = 16;
string baan = 17;
string groupId = 18;
int32 receiveGift = 19;
}

message UpdateUserResponse{
User user = 1;
bool success = 1;
}

0 comments on commit e3627b1

Please sign in to comment.