From 46a833cc1d0c08d4e3f7ca7b6f2a29adc16edd91 Mon Sep 17 00:00:00 2001 From: Simon Goller Date: Wed, 5 Jun 2024 11:29:25 +0200 Subject: [PATCH] Fix startup issue --- rest/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest/src/lib.rs b/rest/src/lib.rs index 6e31533..f5a86be 100644 --- a/rest/src/lib.rs +++ b/rest/src/lib.rs @@ -224,7 +224,7 @@ pub async fn start_server(rest_state: RestState) { ); app.layer(oidc_login_service) - .route("authenticate", get(login)) + .route("/authenticate", get(login)) .layer(oidc_auth_service) .layer(session_layer) };