summaryrefslogtreecommitdiffstats
path: root/webapp/routes/route_create_team.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/routes/route_create_team.jsx')
-rw-r--r--webapp/routes/route_create_team.jsx25
1 files changed, 0 insertions, 25 deletions
diff --git a/webapp/routes/route_create_team.jsx b/webapp/routes/route_create_team.jsx
deleted file mode 100644
index 354d7a39c..000000000
--- a/webapp/routes/route_create_team.jsx
+++ /dev/null
@@ -1,25 +0,0 @@
-import * as RouteUtils from 'routes/route_utils.jsx';
-
-export default {
- path: 'create_team',
- getComponents: (location, callback) => {
- System.import('components/create_team/create_team_controller.jsx').then(RouteUtils.importComponentSuccess(callback));
- },
- indexRoute: {onEnter: (nextState, replace) => replace('/create_team/display_name')},
- getChildRoutes: RouteUtils.createGetChildComponentsFunction(
- [
- {
- path: 'display_name',
- getComponents: (location, callback) => {
- System.import('components/create_team/components/display_name.jsx').then(RouteUtils.importComponentSuccess(callback));
- }
- },
- {
- path: 'team_url',
- getComponents: (location, callback) => {
- System.import('components/create_team/components/team_url.jsx').then(RouteUtils.importComponentSuccess(callback));
- }
- }
- ]
- )
-};