Update user.proto

This commit is contained in:
Asim Aslam
2021-10-28 08:44:04 +01:00
committed by GitHub
parent c888ad02de
commit f5c9b477ac

View File

@@ -28,7 +28,9 @@ message Account {
int64 created = 4; int64 created = 4;
// unix timestamp // unix timestamp
int64 updated = 5; int64 updated = 5;
// if the account is verified
bool verified = 6; bool verified = 6;
// date of verification
int64 verificationDate = 7; int64 verificationDate = 7;
// Store any custom data you want about your users in this fields. // Store any custom data you want about your users in this fields.
map<string,string> profile = 8; map<string,string> profile = 8;