circus/crates/common/src/repo/mod.rs
NotAShelf dec4753567
fc-server: add (more) advanced search API
Basically, implements a multi-entity search functionality with filters
for projects, jobsets, evaluations and builds. Also fixes COUNT query to
apply same filters as main query, and fixes an offset mismatch in
response. Some integration tests have also been added, but chances are
we'll want to write VM tests for this.

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Icdda77966a7218f54fd34b78bdc9b55c6a6a6964
2026-02-05 22:45:22 +03:00

17 lines
362 B
Rust

pub mod api_keys;
pub mod build_dependencies;
pub mod build_products;
pub mod build_steps;
pub mod builds;
pub mod channels;
pub mod evaluations;
pub mod jobset_inputs;
pub mod jobsets;
pub mod notification_configs;
pub mod project_members;
pub mod projects;
pub mod remote_builders;
pub mod search;
pub mod starred_jobs;
pub mod users;
pub mod webhook_configs;