chore: update identity status type to UserStatus #34

Open
mapoofano wants to merge 370 commits from chore-identity-user-status into main
2 changed files with 16 additions and 2 deletions
Showing only changes of commit d6ed4393ab - Show all commits
+5 -2
View File
@@ -3,7 +3,10 @@ syntax = "proto3";
package auth.v1;
import "auth/v1/msg.proto";
import "base/v1/msg.proto";
service InternalAuthorizationService {
rpc LookUpName(LookUpNameReq) returns (LookUpNameRes) {}
}
rpc LookUpName(LookUpNameReq) returns (LookUpNameRes) {}
// This meant to only be used in a worker process
rpc FetchBasicUserInfoList(base.v1.Empty) returns (BasicUserInfoList) {}
}
+11
View File
@@ -247,3 +247,14 @@ message LookUpNameReq {
message LookUpNameRes {
Recipient recipient = 1;
}
message BasicUserInfo {
string name = 1;
string national_id = 2;
string pub_key = 3;
int64 user_id = 4;
}
message BasicUserInfoList {
repeated BasicUserInfo list = 1;
}