summaryrefslogtreecommitdiffstats
path: root/webapp/routes/route_root.jsx
diff options
context:
space:
mode:
authorDavid Lu <david.lu97@outlook.com>2016-08-22 15:33:01 -0400
committerJoram Wilander <jwawilander@gmail.com>2016-08-22 15:33:01 -0400
commitca351b617fc1d412d1a4ae37835a697468769fe6 (patch)
treecc4e776d405b3a6c1d7fa6f627fc57e60734a143 /webapp/routes/route_root.jsx
parent391d685aa4d05cc4316d4770d47eed16dcfb650c (diff)
downloadchat-ca351b617fc1d412d1a4ae37835a697468769fe6.tar.gz
chat-ca351b617fc1d412d1a4ae37835a697468769fe6.tar.bz2
chat-ca351b617fc1d412d1a4ae37835a697468769fe6.zip
PLT-2951 Improved signup process (#3771)
Diffstat (limited to 'webapp/routes/route_root.jsx')
-rw-r--r--webapp/routes/route_root.jsx14
1 files changed, 13 insertions, 1 deletions
diff --git a/webapp/routes/route_root.jsx b/webapp/routes/route_root.jsx
index 52eb5c757..9d64c6012 100644
--- a/webapp/routes/route_root.jsx
+++ b/webapp/routes/route_root.jsx
@@ -66,7 +66,19 @@ export default {
{
path: 'signup_user_complete',
getComponents: (location, callback) => {
- System.import('components/signup_user_complete.jsx').then(RouteUtils.importComponentSuccess(callback));
+ System.import('components/signup/signup_controller.jsx').then(RouteUtils.importComponentSuccess(callback));
+ }
+ },
+ {
+ path: 'signup_email',
+ getComponents: (location, callback) => {
+ System.import('components/signup/components/signup_email.jsx').then(RouteUtils.importComponentSuccess(callback));
+ }
+ },
+ {
+ path: 'signup_ldap',
+ getComponents: (location, callback) => {
+ System.import('components/signup/components/signup_ldap.jsx').then(RouteUtils.importComponentSuccess(callback));
}
},
{