Added | - Add the new
update(updateAction:completion:) method on User entity. This method can be used to update data on the server without losing intermediate updates that might have happened in the time between when the object was last received and updated. - Add the ability to mute and unmute users on the Chat instance. There are
chat.mutedUsersManager.mute(userId:completion:) and chat.mutedUsersManager.unmuteUser(userId:completion:) to mute and unmute a user, respectively. - Add the option to automatically sync the mute list by enabling
ChatConfiguration.syncMutedUsers . - Add missing function to parse quoted message text into
[MessageElement] .
|