fix: add broadcast_move stub to TestStore

This commit is contained in:
2026-05-28 01:50:37 +02:00
parent 50a90efbce
commit 43e5175db5

View File

@@ -706,6 +706,14 @@ impl FederationFollowPort for TestStore {
) -> Result<Vec<RemoteActor>, DomainError> { ) -> Result<Vec<RemoteActor>, DomainError> {
Ok(vec![]) Ok(vec![])
} }
async fn broadcast_move(
&self,
_user_id: &UserId,
_new_actor_url: url::Url,
) -> Result<(), DomainError> {
Ok(())
}
} }
#[async_trait] #[async_trait]