feat(domain): add mark_follower_accepted/rejected thin port methods

This commit is contained in:
2026-05-28 02:22:52 +02:00
parent 2060317867
commit 04f39e35c2
2 changed files with 30 additions and 0 deletions

View File

@@ -763,6 +763,22 @@ impl FederationFollowRequestPort for TestStore {
) -> Result<(), DomainError> {
Ok(())
}
async fn mark_follower_accepted(
&self,
_user_id: &UserId,
_actor_url: &str,
) -> Result<(), DomainError> {
Ok(())
}
async fn mark_follower_rejected(
&self,
_user_id: &UserId,
_actor_url: &str,
) -> Result<(), DomainError> {
Ok(())
}
}
#[async_trait]