mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-06-04 23:09:34 +08:00
add group proto
This commit is contained in:
parent
2bc6d77d10
commit
0554778c83
@ -375,6 +375,27 @@ message GetGroupAbstractInfoResp{
|
||||
uint64 groupMemberListHash = 3;
|
||||
}
|
||||
|
||||
message GroupIsExistReq {
|
||||
repeated string groupIDList = 1;
|
||||
string opUserID = 2;
|
||||
string operationID = 3;
|
||||
}
|
||||
|
||||
message GroupIsExistResp {
|
||||
CommonResp CommonResp = 1;
|
||||
map<string, bool> IsExistMap = 2;
|
||||
}
|
||||
|
||||
message UserIsInGroupReq {
|
||||
string groupID = 1;
|
||||
string userIDList = 2;
|
||||
string operationID = 3;
|
||||
}
|
||||
|
||||
message UserIsInGroupResp {
|
||||
CommonResp CommonResp = 1;
|
||||
map<string, bool> IsExistMap = 2;
|
||||
}
|
||||
|
||||
service group{
|
||||
rpc createGroup(CreateGroupReq) returns(CreateGroupResp);
|
||||
@ -408,6 +429,8 @@ service group{
|
||||
rpc GetSuperGroupsInfo(GetSuperGroupsInfoReq) returns (GetSuperGroupsInfoResp);
|
||||
rpc SetGroupMemberInfo(SetGroupMemberInfoReq) returns (SetGroupMemberInfoResp);
|
||||
rpc GetGroupAbstractInfo(GetGroupAbstractInfoReq) returns (GetGroupAbstractInfoResp);
|
||||
rpc GroupIsExist(GroupIsExistReq) returns(GroupIsExistResp);
|
||||
rpc UserIsInGroup(UserIsInGroupReq) returns();
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user