mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-04 20:18:55 +01:00
Merge #112
112: fix root route r=MarinPostma a=irevoire closes #93 Co-authored-by: Irevoire <tamo@meilisearch.com>
This commit is contained in:
commit
2ecde74fa4
@ -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()
|
||||
|
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user