Serialize activities IDs

This commit is contained in:
Bat 2018-05-03 23:40:43 +01:00
parent b92009f487
commit 293ab658f4
1 changed files with 3 additions and 0 deletions

View File

@ -47,6 +47,7 @@ impl Activity for Accept {
fn serialize(&self) -> serde_json::Value {
json!({
"type": "Accept",
"id": self.id,
"actor": self.actor,
"object": self.object,
"published": self.date.to_rfc3339()
@ -85,6 +86,7 @@ impl Activity for Create {
fn serialize(&self) -> serde_json::Value {
json!({
"type": "Create",
"id": self.id,
"actor": self.actor,
"object": self.object,
"published": self.date.to_rfc3339()
@ -133,6 +135,7 @@ impl Activity for Follow {
fn serialize(&self) -> serde_json::Value {
json!({
"type": "Follow",
"id": self.id,
"actor": self.actor,
"object": self.object
})