feat: Add media details sidebar and date handling features, including media grouping by date

This commit is contained in:
2025-11-16 03:32:18 +01:00
parent 94b184d3b0
commit 2003a55ff7
16 changed files with 362 additions and 52 deletions

View File

@@ -52,6 +52,7 @@ pub struct PostgresMedia {
pub hash: String,
pub created_at: chrono::DateTime<chrono::Utc>,
pub thumbnail_path: Option<String>,
pub date_taken: Option<chrono::DateTime<chrono::Utc>>,
}
#[derive(sqlx::FromRow)]