Skip to content

Commit

Permalink
chore: add rest api return (#3829)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexAlexandre authored Mar 5, 2022
1 parent 70c1534 commit f69ef6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 3 additions & 0 deletions app/definitions/rest/v1/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,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 @@ -273,10 +273,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) => {
Expand Down

0 comments on commit f69ef6e

Please sign in to comment.