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

This commit is contained in:
2026-07-01 00:13:28 +02:00
parent d7fbf8d9e2
commit 9794babe06
25 changed files with 436 additions and 50 deletions

View File

@@ -18,3 +18,13 @@ pub struct FederationFlags {
pub reviews: bool,
pub watchlist: bool,
}
#[derive(Debug, Clone)]
pub struct FederatedProfile {
pub actor_url: String,
pub handle: String,
pub display_name: Option<String>,
pub bio: Option<String>,
pub avatar_url: Option<String>,
pub banner_url: Option<String>,
}