summaryrefslogtreecommitdiffstats
path: root/webapp/routes
diff options
context:
space:
mode:
authorCarlos Tadeu Panato Junior <ctadeu@gmail.com>2017-07-27 10:16:16 +0200
committerGeorge Goldberg <george@gberg.me>2017-07-27 09:16:16 +0100
commit3043b5d52a0192f4e9f1574de42ca9c23a725093 (patch)
treede393635c3024f583535df906bb216d74fc4cca2 /webapp/routes
parentff0a7905166e29ecf9404fa90d23af7863885384 (diff)
downloadchat-3043b5d52a0192f4e9f1574de42ca9c23a725093.tar.gz
chat-3043b5d52a0192f4e9f1574de42ca9c23a725093.tar.bz2
chat-3043b5d52a0192f4e9f1574de42ca9c23a725093.zip
Migrate add and edit incoming webhook components to redux (#6885)
* Migrate add incoming webhook components to redux * Migrate edit incoming webhook components to redux * Add tests
Diffstat (limited to 'webapp/routes')
-rw-r--r--webapp/routes/route_integrations.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/routes/route_integrations.jsx b/webapp/routes/route_integrations.jsx
index 37b33ed40..169d374c6 100644
--- a/webapp/routes/route_integrations.jsx
+++ b/webapp/routes/route_integrations.jsx
@@ -25,13 +25,13 @@ export default {
{
path: 'add',
getComponents: (location, callback) => {
- System.import('components/integrations/components/add_incoming_webhook.jsx').then(RouteUtils.importComponentSuccess(callback));
+ System.import('components/integrations/components/add_incoming_webhook').then(RouteUtils.importComponentSuccess(callback));
}
},
{
path: 'edit',
getComponents: (location, callback) => {
- System.import('components/integrations/components/edit_incoming_webhook.jsx').then(RouteUtils.importComponentSuccess(callback));
+ System.import('components/integrations/components/edit_incoming_webhook').then(RouteUtils.importComponentSuccess(callback));
}
}
]