feat: expose percentile scores for all analyis records through API

endpoint
This commit is contained in:
Aravinth Manivannan
2023-11-05 01:19:13 +05:30
parent 321fd2e89b
commit 8e03290fda
4 changed files with 259 additions and 4 deletions

View File

@@ -14,6 +14,7 @@ pub mod meta;
pub mod notifications;
pub mod pow;
mod routes;
pub mod stats;
pub mod survey;
pub use routes::ROUTES;
@@ -26,6 +27,7 @@ pub fn services(cfg: &mut ServiceConfig) {
mcaptcha::services(cfg);
notifications::services(cfg);
survey::services(cfg);
stats::services(cfg);
}
#[derive(Deserialize)]