add API endpoint for sharing files through share sheet

This commit is contained in:
nilsk 2026-07-21 13:21:03 +02:00
parent fdbf80b3fe
commit be78738627
No known key found for this signature in database
GPG Key ID: A5C0151B4DDB172C

View File

@ -38,6 +38,7 @@ pub fn start_runtime_api() {
.route("/system/qdrant-edge/delete-file", post(crate::qdrant_edge_database::delete_qdrant_edge_embedding_by_file))
.route("/system/qdrant-edge/delete-store", post(crate::qdrant_edge_database::delete_qdrant_edge_store))
.route("/clipboard/set", post(crate::clipboard::set_clipboard))
.route("/share/file", post(crate::share_sheet::share_file))
.route("/events", get(crate::app_window::get_event_stream))
.route("/updates/check", get(crate::app_window::check_for_update))
.route("/updates/install", get(crate::app_window::install_update))