]> Untitled Git - lemmy.git/blob - crates/apub/src/protocol/activities/following/undo_follow.rs
Remove to field from follow activities
[lemmy.git] / crates / apub / src / protocol / activities / following / undo_follow.rs
1 use crate::{
2   objects::person::ApubPerson,
3   protocol::activities::following::follow::FollowCommunity,
4 };
5 use activitystreams::{activity::kind::UndoType, unparsed::Unparsed};
6 use lemmy_apub_lib::object_id::ObjectId;
7 use serde::{Deserialize, Serialize};
8 use url::Url;
9
10 #[derive(Clone, Debug, Deserialize, Serialize)]
11 #[serde(rename_all = "camelCase")]
12 pub struct UndoFollowCommunity {
13   pub(crate) actor: ObjectId<ApubPerson>,
14   pub(crate) object: FollowCommunity,
15   #[serde(rename = "type")]
16   pub(crate) kind: UndoType,
17   pub(crate) id: Url,
18   #[serde(flatten)]
19   pub(crate) unparsed: Unparsed,
20 }