From 735a51fa93941f6be78f411d0e3ac41e3ea53349 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Mon, 16 Aug 2021 11:15:20 +0100 Subject: [PATCH] Update user.proto --- user/proto/user.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user/proto/user.proto b/user/proto/user.proto index fad0998..7b3d18f 100644 --- a/user/proto/user.proto +++ b/user/proto/user.proto @@ -45,7 +45,7 @@ message Session { // Create a new user account. The email address and username for the account must be unique. message CreateRequest { - // the acccount id + // optional acccount id string id = 1; // the username string username = 2; @@ -53,7 +53,7 @@ message CreateRequest { string email = 3; // the user password string password = 4; - // the user profile as map + // optional user profile as map map profile = 5; }