aboutsummaryrefslogtreecommitdiff
path: root/src/routes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes.rs')
-rw-r--r--src/routes.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/routes.rs b/src/routes.rs
index 3d76ab1..982e5ef 100644
--- a/src/routes.rs
+++ b/src/routes.rs
@@ -25,6 +25,8 @@ pub async fn routes(
let path = &uri.path().split('/').collect::<Vec<&str>>()[1..];
let response = match (method, path) {
+ (&Method::HEAD, ["status"]) => controller::utils::ok(),
+ (&Method::GET, ["status"]) => controller::utils::text("ok".to_string()),
(&Method::GET, ["login"]) => {
controller::login::page(&assets, &templates, None).await
}