publish task fields

This commit is contained in:
Namekuji 2023-05-18 01:00:29 -04:00
parent f1936d2846
commit 325500ceb4
No known key found for this signature in database
GPG key ID: B541BD6E646CABC7

View file

@ -27,12 +27,12 @@ use url::Url;
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct SendActivityTask {
actor_id: Url,
activity_id: Url,
activity: String,
inbox: Url,
private_key: String,
http_signature_compat: bool,
pub actor_id: Url,
pub activity_id: Url,
pub activity: String,
pub inbox: Url,
pub private_key: String,
pub http_signature_compat: bool,
}
#[async_trait]