fix root route

This commit is contained in:
Irevoire 2021-03-19 11:34:54 +01:00
parent 1640d9ea91
commit 7ecefe37da
No known key found for this signature in database
GPG Key ID: 7A6A970C96104F1B
2 changed files with 13 additions and 1 deletions

View File

@ -44,7 +44,7 @@ macro_rules! create_app {
let app = if $enable_frontend {
app.service(load_html).service(load_css)
} else {
app
app.service(running)
};
app.wrap(
Cors::default()

View File

@ -29,6 +29,7 @@ impl IndexUpdateResponse {
}
}
/// Return the dashboard, should not be used in production. See [running]
#[get("/")]
pub async fn load_html() -> HttpResponse {
HttpResponse::Ok()
@ -36,6 +37,17 @@ pub async fn load_html() -> HttpResponse {
.body(include_str!("../../public/interface.html").to_string())
}
/// Always return a 200 with:
/// ```json
/// {
/// "status": "Meilisearch is running"
/// }
/// ```
#[get("/")]
pub async fn running() -> HttpResponse {
HttpResponse::Ok().json(serde_json::json!({ "status": "MeiliSearch is running" }))
}
#[get("/bulma.min.css")]
pub async fn load_css() -> HttpResponse {
HttpResponse::Ok()