chore: Update deleteCustomAttribute
method in SDK (#3334)
This commit is contained in:
parent
c2db8a1fd7
commit
a2764e5c1d
12 changed files with 138 additions and 30 deletions
|
@ -20,6 +20,7 @@ class ActionCableConnector extends BaseActionCableConnector {
|
|||
'conversation.contact_changed': this.onConversationContactChange,
|
||||
'presence.update': this.onPresenceUpdate,
|
||||
'contact.deleted': this.onContactDelete,
|
||||
'contact.updated': this.onContactUpdate,
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -124,6 +125,10 @@ class ActionCableConnector extends BaseActionCableConnector {
|
|||
);
|
||||
this.fetchConversationStats();
|
||||
};
|
||||
|
||||
onContactUpdate = data => {
|
||||
this.app.$store.dispatch('contacts/updateContact', data);
|
||||
};
|
||||
}
|
||||
|
||||
export default {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue