2021-10-29 10:32:42 +00:00
|
|
|
use crate::{
|
|
|
|
fetcher::object_id::ObjectId,
|
|
|
|
objects::person::ApubPerson,
|
|
|
|
protocol::objects::group::Group,
|
|
|
|
};
|
|
|
|
use activitystreams::{activity::kind::UpdateType, unparsed::Unparsed};
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use url::Url;
|
|
|
|
|
|
|
|
/// This activity is received from a remote community mod, and updates the description or other
|
|
|
|
/// fields of a local community.
|
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 UpdateCommunity {
|
|
|
|
pub(crate) actor: ObjectId<ApubPerson>,
|
|
|
|
pub(crate) to: Vec<Url>,
|
|
|
|
// TODO: would be nice to use a separate struct here, which only contains the fields updated here
|
|
|
|
pub(crate) object: Group,
|
|
|
|
pub(crate) cc: Vec<Url>,
|
|
|
|
#[serde(rename = "type")]
|
|
|
|
pub(crate) kind: UpdateType,
|
|
|
|
pub(crate) id: Url,
|
|
|
|
#[serde(flatten)]
|
|
|
|
pub(crate) unparsed: Unparsed,
|
|
|
|
}
|