]> Untitled Git - lemmy.git/blobdiff - crates/apub/src/protocol/activities/following/undo_follow.rs
Implement federated user following (fixes #752) (#2577)
[lemmy.git] / crates / apub / src / protocol / activities / following / undo_follow.rs
index 5e9c58946ead996f933403c1103cd50115e830d2..33308c24b6bc5e0eeee38c020595160ef9e54041 100644 (file)
@@ -1,21 +1,15 @@
-use crate::{
-  objects::{community::ApubCommunity, person::ApubPerson},
-  protocol::activities::following::follow::FollowCommunity,
-};
-use activitystreams::{activity::kind::UndoType, unparsed::Unparsed};
-use lemmy_apub_lib::object_id::ObjectId;
+use crate::{objects::person::ApubPerson, protocol::activities::following::follow::Follow};
+use activitypub_federation::core::object_id::ObjectId;
+use activitystreams_kinds::activity::UndoType;
 use serde::{Deserialize, Serialize};
 use url::Url;
 
 #[derive(Clone, Debug, Deserialize, Serialize)]
 #[serde(rename_all = "camelCase")]
-pub struct UndoFollowCommunity {
+pub struct UndoFollow {
   pub(crate) actor: ObjectId<ApubPerson>,
-  pub(crate) to: [ObjectId<ApubCommunity>; 1],
-  pub(crate) object: FollowCommunity,
+  pub(crate) object: Follow,
   #[serde(rename = "type")]
   pub(crate) kind: UndoType,
   pub(crate) id: Url,
-  #[serde(flatten)]
-  pub(crate) unparsed: Unparsed,
 }