Implements the get all batches route with filters working

This commit is contained in:
Tamo 2024-11-14 17:31:02 +01:00
parent 6062914654
commit a1251c3c83
No known key found for this signature in database
GPG key ID: 20CD8020AFA88D69
179 changed files with 5362 additions and 849 deletions

View file

@ -33,6 +33,7 @@ pub mod tasks;
pub fn configure(cfg: &mut web::ServiceConfig) {
cfg.service(web::scope("/tasks").configure(tasks::configure))
.service(web::scope("/batches").configure(batches::configure))
.service(web::resource("/health").route(web::get().to(get_health)))
.service(web::scope("/logs").configure(logs::configure))
.service(web::scope("/keys").configure(api_key::configure))