feat(ap): handle Undo(Like) inbound activity

This commit is contained in:
2026-05-15 05:28:52 +02:00
parent f008564c32
commit d360e506db
3 changed files with 21 additions and 0 deletions

View File

@@ -221,6 +221,10 @@ impl ApObjectHandler for ThoughtsObjectHandler {
Ok(())
}
async fn on_unlike(&self, _object_url: &url::Url, _actor_url: &url::Url) -> anyhow::Result<()> {
Ok(())
}
async fn on_announce_received(&self, object_url: &Url, actor_url: &Url) -> Result<()> {
let thought_uuid = object_url
.path()