fix: Fix login, register and forgot-password links

These links don't work unless you add a trailing slash
This commit is contained in:
Lorenzo Gabriele 2022-01-10 10:39:20 +01:00 committed by GitHub
parent f3bb1ab711
commit 1a50df25ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@
},
"controls": {
"BasicInteractionRoute:_controls_key": "forgotPassword",
"BasicInteractionRoute:_controls_value": "/forgotpassword"
"BasicInteractionRoute:_controls_value": "/forgotpassword/"
},
"handler": {
"@type": "ForgotPasswordHandler",

View File

@ -13,7 +13,7 @@
},
"controls": {
"BasicInteractionRoute:_controls_key": "login",
"BasicInteractionRoute:_controls_value": "/login"
"BasicInteractionRoute:_controls_value": "/login/"
},
"handler": {
"@type": "LoginHandler",

View File

@ -16,7 +16,7 @@
},
"controls": {
"BasicInteractionRoute:_controls_key": "register",
"BasicInteractionRoute:_controls_value": "/register"
"BasicInteractionRoute:_controls_value": "/register/"
},
"handler": {
"@type": "RegistrationHandler",