Add some utility methods to tags

This commit is contained in:
Jon Staab
2026-04-22 10:39:03 -07:00
parent a8a57a3d77
commit 8773017198
4 changed files with 79 additions and 6 deletions
+3 -1
View File
@@ -234,7 +234,9 @@ impl Kind for Deletion {
}
fn to_content(&self) -> EventContent {
EventContent::new(self.reason.clone(), self.tags.clone())
EventContent::new()
.content(self.reason.clone())
.tags(self.tags.clone())
}
}
```