Include channel id and author in edit packets.

This commit is contained in:
Paul Makles
2020-06-21 15:00:45 +01:00
parent 0bd711aa57
commit 3bca53c6a8
2 changed files with 4 additions and 0 deletions

View File

@@ -12,6 +12,8 @@ pub struct Create {
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct Edit {
pub id: String,
pub channel: String,
pub author: String,
pub content: String,
}