Revert tag change, update partials to include ids.

This commit is contained in:
Paul Makles
2021-01-19 20:18:29 +00:00
parent 5ab329dfdd
commit 984017eb61
3 changed files with 17 additions and 13 deletions

View File

@@ -39,13 +39,19 @@ pub enum ClientboundNotification {
},
Message(Message),
MessageUpdate(JsonValue),
MessageUpdate {
id: String,
data: JsonValue
},
MessageDelete {
id: String,
},
ChannelCreate(Channel),
ChannelUpdate(JsonValue),
ChannelUpdate {
id: String,
data: JsonValue
},
ChannelGroupJoin {
id: String,
user: String,