2021-11-05 00:24:10 +00:00
|
|
|
use crate::objects::{community::ApubCommunity, person::ApubPerson};
|
2021-10-29 10:32:42 +00:00
|
|
|
use activitystreams::{activity::kind::BlockType, unparsed::Unparsed};
|
2021-11-05 00:24:10 +00:00
|
|
|
use lemmy_apub_lib::object_id::ObjectId;
|
2021-10-29 10:32:42 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use url::Url;
|
|
|
|
|
2021-11-03 17:33:51 +00:00
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2021-10-29 10:32:42 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct BlockUserFromCommunity {
|
|
|
|
pub(crate) actor: ObjectId<ApubPerson>,
|
|
|
|
pub(crate) to: Vec<Url>,
|
|
|
|
pub(crate) object: ObjectId<ApubPerson>,
|
|
|
|
pub(crate) cc: Vec<Url>,
|
|
|
|
pub(crate) target: ObjectId<ApubCommunity>,
|
|
|
|
#[serde(rename = "type")]
|
|
|
|
pub(crate) kind: BlockType,
|
|
|
|
pub(crate) id: Url,
|
|
|
|
#[serde(flatten)]
|
|
|
|
pub(crate) unparsed: Unparsed,
|
|
|
|
}
|