From d8bd57901e33a7057e26e782e295099ffcc0da89 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Wed, 6 Sep 2017 23:04:13 -0700 Subject: Removing webapp --- webapp/routes/route_help.jsx | 66 -------------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 webapp/routes/route_help.jsx (limited to 'webapp/routes/route_help.jsx') diff --git a/webapp/routes/route_help.jsx b/webapp/routes/route_help.jsx deleted file mode 100644 index 7c0ad2dd1..000000000 --- a/webapp/routes/route_help.jsx +++ /dev/null @@ -1,66 +0,0 @@ -// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -import * as RouteUtils from 'routes/route_utils.jsx'; - -export default { - path: 'help', - indexRoute: {onEnter: (nextState, replace) => replace('/help/messaging')}, - childRoutes: [ - { - getComponents: (location, callback) => { - System.import('components/help/help_controller.jsx').then(RouteUtils.importComponentSuccess(callback)); - }, - childRoutes: [ - { - path: 'messaging', - indexRoute: { - getComponents: (location, callback) => { - System.import('components/help/components/messaging.jsx').then(RouteUtils.importComponentSuccess(callback)); - } - } - }, - { - path: 'composing', - indexRoute: { - getComponents: (location, callback) => { - System.import('components/help/components/composing.jsx').then(RouteUtils.importComponentSuccess(callback)); - } - } - }, - { - path: 'mentioning', - indexRoute: { - getComponents: (location, callback) => { - System.import('components/help/components/mentioning.jsx').then(RouteUtils.importComponentSuccess(callback)); - } - } - }, - { - path: 'formatting', - indexRoute: { - getComponents: (location, callback) => { - System.import('components/help/components/formatting.jsx').then(RouteUtils.importComponentSuccess(callback)); - } - } - }, - { - path: 'attaching', - indexRoute: { - getComponents: (location, callback) => { - System.import('components/help/components/attaching.jsx').then(RouteUtils.importComponentSuccess(callback)); - } - } - }, - { - path: 'commands', - indexRoute: { - getComponents: (location, callback) => { - System.import('components/help/components/commands.jsx').then(RouteUtils.importComponentSuccess(callback)); - } - } - } - ] - } - ] -}; -- cgit v1.2.3-1-g7c22