Websocket: Provide channel id for message edit / del.

This commit is contained in:
Paul
2021-05-25 14:06:23 +01:00
parent 67b9b8ceee
commit 7c7943b9f6
2 changed files with 5 additions and 0 deletions

View File

@@ -50,10 +50,12 @@ pub enum ClientboundNotification {
Message(Message),
MessageUpdate {
id: String,
channel: String,
data: JsonValue,
},
MessageDelete {
id: String,
channel: String,
},
ChannelCreate(Channel),