feat: enhance review handling by adding actor URL support across multiple components
All checks were successful
CI / Check / Test (push) Successful in 1h3m53s

This commit is contained in:
2026-06-30 03:34:52 +02:00
parent 9f6ba55afc
commit d7fbf8d9e2
7 changed files with 21 additions and 7 deletions

View File

@@ -55,9 +55,10 @@ pub struct FeedEntryDto {
pub movie: MovieDto,
pub review: ReviewDto,
pub user_id: Uuid,
pub user_email: String,
pub user_display_name: String,
pub is_federated: bool,
#[serde(skip_serializing_if = "Option::is_none")]
pub actor_url: Option<String>,
}
#[derive(Debug, Clone, Serialize, Deserialize, utoipa::ToSchema)]