feat: Notification on new messages in conversation (#1204)

fixes: #895
fixes: #1118
fixes: #1075

Co-authored-by: Pranav Raj S <pranav@thoughtwoot.com>
This commit is contained in:
Sojan Jose 2020-09-10 19:19:15 +05:30 committed by GitHub
parent 3b92c744d6
commit 31c07771e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
36 changed files with 259 additions and 94 deletions

View file

@ -33,7 +33,7 @@ const toggleTyping = async ({ typingStatus }) => {
const setUserLastSeenAt = async ({ lastSeen }) => {
return API.post(
`/api/v1/widget/conversations/update_last_seen${window.location.search}`,
{ user_last_seen_at: lastSeen }
{ contact_last_seen_at: lastSeen }
);
};