Added gps-summary endpoint for Map integration

This commit is contained in:
Cameron
2026-01-26 11:42:33 -05:00
parent 701a06871c
commit 073b5ed418
4 changed files with 164 additions and 0 deletions

View File

@@ -347,6 +347,20 @@ pub struct GetTagsRequest {
pub path: Option<String>,
}
#[derive(Debug, Serialize)]
pub struct GpsPhotoSummary {
pub path: String,
pub lat: f64,
pub lon: f64,
pub date_taken: Option<i64>,
}
#[derive(Debug, Serialize)]
pub struct GpsPhotosResponse {
pub photos: Vec<GpsPhotoSummary>,
pub total: usize,
}
#[cfg(test)]
mod tests {
use super::Claims;