mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-18 09:41:01 +00:00
Serialize activities IDs
This commit is contained in:
parent
b92009f487
commit
293ab658f4
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue