From 43e5175db5b2c59beb061d75cc0c8f05f9ab6640 Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Thu, 28 May 2026 01:50:37 +0200 Subject: [PATCH] fix: add broadcast_move stub to TestStore --- crates/domain/src/testing/mod.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/crates/domain/src/testing/mod.rs b/crates/domain/src/testing/mod.rs index ac647e4..31efd1d 100644 --- a/crates/domain/src/testing/mod.rs +++ b/crates/domain/src/testing/mod.rs @@ -706,6 +706,14 @@ impl FederationFollowPort for TestStore { ) -> Result, DomainError> { Ok(vec![]) } + + async fn broadcast_move( + &self, + _user_id: &UserId, + _new_actor_url: url::Url, + ) -> Result<(), DomainError> { + Ok(()) + } } #[async_trait]