summaryrefslogtreecommitdiffstats
path: root/webapp/routes/route_root.jsx
diff options
context:
space:
mode:
authorenahum <nahumhbl@gmail.com>2016-08-18 17:36:43 -0500
committerCorey Hulen <corey@hulen.com>2016-08-18 14:36:43 -0800
commita820b1640bcea06d93fed790b891a853ea02e498 (patch)
tree3b4d3d5289cc39ace0bfc60c36295f32b91dd38b /webapp/routes/route_root.jsx
parentb95bd3d8ccea5735b944df8f2fbe7758257ab15e (diff)
downloadchat-a820b1640bcea06d93fed790b891a853ea02e498.tar.gz
chat-a820b1640bcea06d93fed790b891a853ea02e498.tar.bz2
chat-a820b1640bcea06d93fed790b891a853ea02e498.zip
PLT-2345 Switch "help" link below text input box to localizable version (#3794)
Diffstat (limited to 'webapp/routes/route_root.jsx')
-rw-r--r--webapp/routes/route_root.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/webapp/routes/route_root.jsx b/webapp/routes/route_root.jsx
index aeca1da72..52eb5c757 100644
--- a/webapp/routes/route_root.jsx
+++ b/webapp/routes/route_root.jsx
@@ -8,6 +8,7 @@ import Root from 'components/root.jsx';
import claimAccountRoute from 'routes/route_claim.jsx';
import createTeamRoute from 'routes/route_create_team.jsx';
import teamRoute from 'routes/route_team.jsx';
+import helpRoute from 'routes/route_help.jsx';
import BrowserStore from 'stores/browser_store.jsx';
import ErrorStore from 'stores/error_store.jsx';
@@ -79,7 +80,8 @@ export default {
getComponents: (location, callback) => {
System.import('components/do_verify_email.jsx').then(RouteUtils.importComponentSuccess(callback));
}
- }
+ },
+ helpRoute
]
)
},