Loading appinfo/routes.php +1 −1 Original line number Diff line number Diff line Loading @@ -25,7 +25,7 @@ return ['routes' => [ 'url' => '/issue/submit', 'verb' => 'POST' ], ['name' => 'account#index', 'url' => '/accounts/{lang}/signup', 'verb' => 'GET'], ['name' => 'account#index', 'url' => '/accounts/signup', 'verb' => 'GET'], ['name' => 'account#create', 'url' => '/accounts/create', 'verb' => 'POST'], ['name' => 'account#captcha', 'url' => '/accounts/captcha', 'verb' => 'GET'], ['name' => 'account#verify_captcha', 'url' => '/accounts/verify_captcha', 'verb' => 'POST'], Loading src/signup/RegistrationForm.vue +1 −1 Original line number Diff line number Diff line Loading @@ -301,7 +301,7 @@ export default { } }, onLanguageChange() { window.location.href = window.location.origin + '/apps/' + APPLICATION_NAME + '/accounts/' + this.formData.selectedLanguage + '/signup' window.location.href = `${window.location.origin}/apps/${APPLICATION_NAME}/accounts/signup?lang=${this.formData.selectedLanguage}` }, }, } Loading Loading
appinfo/routes.php +1 −1 Original line number Diff line number Diff line Loading @@ -25,7 +25,7 @@ return ['routes' => [ 'url' => '/issue/submit', 'verb' => 'POST' ], ['name' => 'account#index', 'url' => '/accounts/{lang}/signup', 'verb' => 'GET'], ['name' => 'account#index', 'url' => '/accounts/signup', 'verb' => 'GET'], ['name' => 'account#create', 'url' => '/accounts/create', 'verb' => 'POST'], ['name' => 'account#captcha', 'url' => '/accounts/captcha', 'verb' => 'GET'], ['name' => 'account#verify_captcha', 'url' => '/accounts/verify_captcha', 'verb' => 'POST'], Loading
src/signup/RegistrationForm.vue +1 −1 Original line number Diff line number Diff line Loading @@ -301,7 +301,7 @@ export default { } }, onLanguageChange() { window.location.href = window.location.origin + '/apps/' + APPLICATION_NAME + '/accounts/' + this.formData.selectedLanguage + '/signup' window.location.href = `${window.location.origin}/apps/${APPLICATION_NAME}/accounts/signup?lang=${this.formData.selectedLanguage}` }, }, } Loading