feat: implement federated profile handling with support for remote actor URLs across multiple components
All checks were successful
CI / Check / Test (push) Successful in 1h7m53s
All checks were successful
CI / Check / Test (push) Successful in 1h7m53s
This commit is contained in:
@@ -347,6 +347,18 @@ impl crate::ports::SocialQueryPort for PanicSocialQueryPort {
|
||||
}
|
||||
}
|
||||
|
||||
pub struct PanicFederatedProfileQuery;
|
||||
|
||||
#[async_trait]
|
||||
impl crate::ports::FederatedProfileQuery for PanicFederatedProfileQuery {
|
||||
async fn get_federated_profile(
|
||||
&self,
|
||||
_: uuid::Uuid,
|
||||
) -> Result<Option<crate::models::FederatedProfile>, DomainError> {
|
||||
panic!("PanicFederatedProfileQuery called")
|
||||
}
|
||||
}
|
||||
|
||||
pub struct PanicWatchEventRepository;
|
||||
|
||||
#[async_trait]
|
||||
|
||||
Reference in New Issue
Block a user