Fixed agent UI
All checks were successful
Publish Metadata Agent Image / build-and-push-image (push) Successful in 1m7s
Publish Web Player Image / build-and-push-image (push) Successful in 1m9s
Publish Server Image / build-and-push-image (push) Successful in 2m10s

This commit is contained in:
2026-03-18 04:05:47 +00:00
parent 6e2155d8bd
commit a4010e1173
5 changed files with 639 additions and 403 deletions

View File

@@ -21,7 +21,12 @@ pub fn build_router(state: Arc<AppState>) -> Router {
.route("/queue/:id", get(api::get_queue_item).delete(api::delete_queue_item))
.route("/queue/:id/approve", post(api::approve_queue_item))
.route("/queue/:id/reject", post(api::reject_queue_item))
.route("/queue/:id/retry", post(api::retry_queue_item))
.route("/queue/:id/update", put(api::update_queue_item))
.route("/queue/batch/approve", post(api::batch_approve))
.route("/queue/batch/reject", post(api::batch_reject))
.route("/queue/batch/retry", post(api::batch_retry))
.route("/queue/batch/delete", post(api::batch_delete))
.route("/artists/search", get(api::search_artists))
.route("/artists", get(api::list_artists))
.route("/artists/:id", put(api::update_artist))