Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app/definitions/rest/v1/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,7 @@ export type ChatEndpoints = {
message: Pick<IMessage, '_id' | 'rid' | 'u'>;
};
};
'chat.react': {
POST: (params: { emoji: string; messageId: string }) => void;
};
};
4 changes: 1 addition & 3 deletions app/lib/rocketchat/services/restApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -289,10 +289,8 @@ export const setUserStatus = (status?: string, message?: string): any =>
// @ts-ignore
sdk.post('users.setStatus', { status, message });

export const setReaction = (emoji: string, messageId: string): any =>
export const setReaction = (emoji: string, messageId: string) =>
// RC 0.62.2
// TODO: missing definitions from server
// @ts-ignore
sdk.post('chat.react', { emoji, messageId });

export const toggleRead = (read: boolean, roomId: string): any => {
Expand Down