feat: Add media serving functionality with optional metadata stripping

This commit is contained in:
2025-11-15 18:36:34 +01:00
parent ccb9f09d4a
commit e6c941bf28
7 changed files with 108 additions and 16 deletions

View File

@@ -273,3 +273,9 @@ where
has_prev_page: core_response.has_prev_page,
}
}
#[derive(Deserialize)]
pub struct ServeFileQuery {
#[serde(default)]
pub strip: bool,
}