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

@@ -853,6 +853,10 @@ fn main() -> std::io::Result<()> {
web::resource("/photos")
.route(web::get().to(files::list_photos::<SqliteTagDao, RealFileSystem>)),
)
.service(
web::resource("/photos/gps-summary")
.route(web::get().to(files::get_gps_summary)),
)
.service(web::resource("/file/move").post(move_file::<RealFileSystem>))
.service(get_image)
.service(upload_image)