mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
fix: Disable typing indicator for user when agent is typing a private note (#3303)
This commit is contained in:
@@ -51,9 +51,10 @@ class ConversationApi extends ApiClient {
|
||||
return axios.post(`${this.url}/${id}/update_last_seen`);
|
||||
}
|
||||
|
||||
toggleTyping({ conversationId, status }) {
|
||||
toggleTyping({ conversationId, status, isPrivate }) {
|
||||
return axios.post(`${this.url}/${conversationId}/toggle_typing_status`, {
|
||||
typing_status: status,
|
||||
is_private: isPrivate
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user