feat(ports): add get_thought_ap_id and get_actor_ap_urls to ActivityPubRepository

This commit is contained in:
2026-05-15 13:09:37 +02:00
parent 711b3ec63b
commit bf3e336d0f
3 changed files with 60 additions and 1 deletions

View File

@@ -882,6 +882,18 @@ impl ActivityPubRepository for TestStore {
.filter(|t| t.local)
.count() as u64)
}
async fn get_thought_ap_id(
&self,
_thought_id: &ThoughtId,
) -> Result<Option<String>, DomainError> {
Ok(None)
}
async fn get_actor_ap_urls(
&self,
_user_id: &UserId,
) -> Result<Option<ActorApUrls>, DomainError> {
Ok(None)
}
}
#[async_trait]