feat: add user_id to FeedEntryDto

This commit is contained in:
2026-06-04 02:22:08 +02:00
parent a97e263ed3
commit dbc78a1ff4
2 changed files with 2 additions and 0 deletions

View File

@@ -54,6 +54,7 @@ pub struct ActivityFeedQueryParams {
pub struct FeedEntryDto {
pub movie: MovieDto,
pub review: ReviewDto,
pub user_id: Uuid,
pub user_email: String,
pub user_display_name: String,
}