summaryrefslogtreecommitdiffstats
path: root/webapp/routes/route_root.jsx
diff options
context:
space:
mode:
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));
}
},
{