del notification

This commit is contained in:
wangchuxiao
2023-05-30 11:18:07 +08:00
parent 11d3f4af0c
commit 703b5ebda0
9 changed files with 448 additions and 203 deletions
@@ -173,6 +173,14 @@ message GetUserConversationIDsHashResp {
uint64 hash = 1;
}
message GetConversationByConversationIDReq {
string conversationID = 1;
}
message GetConversationByConversationIDResp {
Conversation conversation = 1;
}
service conversation {
rpc ModifyConversationField(ModifyConversationFieldReq)returns(ModifyConversationFieldResp);
rpc GetConversation(GetConversationReq)returns(GetConversationResp);
@@ -189,4 +197,5 @@ service conversation {
rpc GetConversationsHasReadAndMaxSeq(GetConversationsHasReadAndMaxSeqReq) returns(GetConversationsHasReadAndMaxSeqResp);
rpc SetConversations(SetConversationsReq) returns(SetConversationsResp);
rpc GetUserConversationIDsHash(GetUserConversationIDsHashReq) returns(GetUserConversationIDsHashResp);
rpc GetConversationByConversationID(GetConversationByConversationIDReq) returns(GetConversationByConversationIDResp);
}