]> 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 f14e3a48d6c8196fc0a204f3a8d94d6c2b0c636a..33308c24b6bc5e0eeee38c020595160ef9e54041 100644 (file)
@@ -1,20 +1,15 @@
-use crate::{
-  objects::person::ApubPerson,
-  protocol::{activities::following::follow::FollowCommunity, Unparsed},
-};
+use crate::{objects::person::ApubPerson, protocol::activities::following::follow::Follow};
+use activitypub_federation::core::object_id::ObjectId;
 use activitystreams_kinds::activity::UndoType;
-use lemmy_apub_lib::object_id::ObjectId;
 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) object: FollowCommunity,
+  pub(crate) object: Follow,
   #[serde(rename = "type")]
   pub(crate) kind: UndoType,
   pub(crate) id: Url,
-  #[serde(flatten)]
-  pub(crate) unparsed: Unparsed,
 }