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) };