|
|
|
@ -301,7 +301,10 @@ func (c *conversationServer) GetConversationsByConversationID(
|
|
|
|
|
return &pbconversation.GetConversationsByConversationIDResp{Conversations: convert.ConversationsDB2Pb(conversations)}, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *conversationServer) GetConversationOfflinePushUserIDs(ctx context.Context, req *pbconversation.GetConversationOfflinePushUserIDsReq) (*pbconversation.GetConversationOfflinePushUserIDsResp, error) {
|
|
|
|
|
func (c *conversationServer) GetConversationOfflinePushUserIDs(
|
|
|
|
|
ctx context.Context,
|
|
|
|
|
req *pbconversation.GetConversationOfflinePushUserIDsReq,
|
|
|
|
|
) (*pbconversation.GetConversationOfflinePushUserIDsResp, error) {
|
|
|
|
|
if req.ConversationID == "" {
|
|
|
|
|
return nil, errs.ErrArgs.Wrap("conversationID is empty")
|
|
|
|
|
}
|
|
|
|
|