mirror of
https://github.com/kevin-DL/services.git
synced 2026-03-15 07:25:19 +00:00
support adding profile to a user
This commit is contained in:
@@ -53,6 +53,9 @@ message CreateRequest {
|
||||
string email = 3;
|
||||
// the user password
|
||||
string password = 4;
|
||||
// the user profile as map<string,string>
|
||||
map<string,string> profile = 5;
|
||||
|
||||
}
|
||||
|
||||
message CreateResponse {
|
||||
@@ -88,6 +91,8 @@ message UpdateRequest {
|
||||
string username = 2;
|
||||
// the new email address
|
||||
string email = 3;
|
||||
// the user profile as map<string,string>
|
||||
map<string,string> profile = 4;
|
||||
}
|
||||
|
||||
message UpdateResponse {
|
||||
@@ -164,4 +169,4 @@ message SendVerificationEmailRequest{
|
||||
string fromName = 6;
|
||||
}
|
||||
|
||||
message SendVerificationEmailResponse{}
|
||||
message SendVerificationEmailResponse{}
|
||||
|
||||
Reference in New Issue
Block a user