summaryrefslogtreecommitdiffstats
path: root/webapp/routes/route_emoji.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-09-06 23:04:13 -0700
committerChristopher Speller <crspeller@gmail.com>2017-09-06 23:11:58 -0700
commitd8bd57901e33a7057e26e782e295099ffcc0da89 (patch)
treee12dfc8cad42b1576756d19d7fbfd82646a009bf /webapp/routes/route_emoji.jsx
parent7bc8e9a08dfde56387f946fdf5086252aa4d0491 (diff)
downloadchat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.gz
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.bz2
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.zip
Removing webapp
Diffstat (limited to 'webapp/routes/route_emoji.jsx')
-rw-r--r--webapp/routes/route_emoji.jsx24
1 files changed, 0 insertions, 24 deletions
diff --git a/webapp/routes/route_emoji.jsx b/webapp/routes/route_emoji.jsx
deleted file mode 100644
index 2718a428e..000000000
--- a/webapp/routes/route_emoji.jsx
+++ /dev/null
@@ -1,24 +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: 'emoji',
- getComponents: (location, callback) => {
- System.import('components/backstage/backstage_controller.jsx').then(RouteUtils.importComponentSuccess(callback));
- },
- indexRoute: {
- getComponents: (location, callback) => {
- System.import('components/emoji/components/emoji_list.jsx').then(RouteUtils.importComponentSuccess(callback));
- }
- },
- childRoutes: [
- {
- path: 'add',
- getComponents: (location, callback) => {
- System.import('components/emoji/components/add_emoji.jsx').then(RouteUtils.importComponentSuccess(callback));
- }
- }
- ]
-};