Show mentioned badges & enable scrolling to mentions in conversations
This commit is contained in:
parent
caaeda8abe
commit
d012779e87
21 changed files with 694 additions and 184 deletions
|
@ -514,6 +514,20 @@ export type DataInterface = {
|
|||
includeStoryReplies: boolean;
|
||||
}
|
||||
) => Promise<number>;
|
||||
getTotalUnreadMentionsOfMeForConversation: (
|
||||
conversationId: string,
|
||||
options: {
|
||||
storyId?: string;
|
||||
includeStoryReplies: boolean;
|
||||
}
|
||||
) => Promise<number>;
|
||||
getOldestUnreadMentionOfMeForConversation(
|
||||
conversationId: string,
|
||||
options: {
|
||||
storyId?: string;
|
||||
includeStoryReplies: boolean;
|
||||
}
|
||||
): Promise<MessageMetricsType | undefined>;
|
||||
getUnreadByConversationAndMarkRead: (options: {
|
||||
conversationId: string;
|
||||
includeStoryReplies: boolean;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue