summaryrefslogtreecommitdiffstats
path: root/webapp/components/signup/signup_controller.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-02-02 09:31:00 -0500
committerHarrison Healey <harrisonmhealey@gmail.com>2017-02-02 09:31:00 -0500
commitca3211bc04f6dea34e8168217182637d1419f998 (patch)
treea3d47d510ea562083bc4370e0b4fd9ab9e2befb4 /webapp/components/signup/signup_controller.jsx
parentf1a4c0738301f50b6a9e8bd635fbcc172decb199 (diff)
downloadchat-ca3211bc04f6dea34e8168217182637d1419f998.tar.gz
chat-ca3211bc04f6dea34e8168217182637d1419f998.tar.bz2
chat-ca3211bc04f6dea34e8168217182637d1419f998.zip
PLT-5328 Fixing signup screen (#5247)
* Fixing signup screen not forwarding properly * Fixing team id not forwarding from invite link if only LDAP is enabled
Diffstat (limited to 'webapp/components/signup/signup_controller.jsx')
-rw-r--r--webapp/components/signup/signup_controller.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/components/signup/signup_controller.jsx b/webapp/components/signup/signup_controller.jsx
index 737431926..4facbc60d 100644
--- a/webapp/components/signup/signup_controller.jsx
+++ b/webapp/components/signup/signup_controller.jsx
@@ -266,7 +266,7 @@ export default class SignupController extends React.Component {
if (global.window.mm_config.EnableSignUpWithEmail === 'true') {
return browserHistory.push('/signup_email' + window.location.search);
} else if (global.window.mm_license.IsLicensed === 'true' && global.window.mm_config.EnableLdap === 'true') {
- return browserHistory.push('/signup_ldap');
+ return browserHistory.push('/signup_ldap' + window.location.search);
}
}