From 1a50df25ec7e8cbc5a099ba0c81433b6fe54587f Mon Sep 17 00:00:00 2001 From: Lorenzo Gabriele Date: Mon, 10 Jan 2022 10:39:20 +0100 Subject: [PATCH] fix: Fix login, register and forgot-password links These links don't work unless you add a trailing slash --- config/identity/handler/interaction/routes/forgot-password.json | 2 +- config/identity/handler/interaction/routes/login.json | 2 +- config/identity/registration/route/registration.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/identity/handler/interaction/routes/forgot-password.json b/config/identity/handler/interaction/routes/forgot-password.json index 5ea7e69fc..3fe3ca6c5 100644 --- a/config/identity/handler/interaction/routes/forgot-password.json +++ b/config/identity/handler/interaction/routes/forgot-password.json @@ -16,7 +16,7 @@ }, "controls": { "BasicInteractionRoute:_controls_key": "forgotPassword", - "BasicInteractionRoute:_controls_value": "/forgotpassword" + "BasicInteractionRoute:_controls_value": "/forgotpassword/" }, "handler": { "@type": "ForgotPasswordHandler", diff --git a/config/identity/handler/interaction/routes/login.json b/config/identity/handler/interaction/routes/login.json index ecdd6420a..2be5fe2c0 100644 --- a/config/identity/handler/interaction/routes/login.json +++ b/config/identity/handler/interaction/routes/login.json @@ -13,7 +13,7 @@ }, "controls": { "BasicInteractionRoute:_controls_key": "login", - "BasicInteractionRoute:_controls_value": "/login" + "BasicInteractionRoute:_controls_value": "/login/" }, "handler": { "@type": "LoginHandler", diff --git a/config/identity/registration/route/registration.json b/config/identity/registration/route/registration.json index 3db34114f..c0aff91af 100644 --- a/config/identity/registration/route/registration.json +++ b/config/identity/registration/route/registration.json @@ -16,7 +16,7 @@ }, "controls": { "BasicInteractionRoute:_controls_key": "register", - "BasicInteractionRoute:_controls_value": "/register" + "BasicInteractionRoute:_controls_value": "/register/" }, "handler": { "@type": "RegistrationHandler",