summaryrefslogtreecommitdiffstats
path: root/webapp/routes
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-07-10 17:43:47 -0400
committerGitHub <noreply@github.com>2017-07-10 17:43:47 -0400
commit0cc60abf6a33dca0d8317481f83d0eb2771f43a1 (patch)
tree8e56bd479017bacae44e859c743c16080839240d /webapp/routes
parent6330f7f6377a4a8af956399ed299300f3d98a7a6 (diff)
downloadchat-0cc60abf6a33dca0d8317481f83d0eb2771f43a1.tar.gz
chat-0cc60abf6a33dca0d8317481f83d0eb2771f43a1.tar.bz2
chat-0cc60abf6a33dca0d8317481f83d0eb2771f43a1.zip
Migrate add and edit outgoing webhook components to redux (#6818)
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 dd3ebe663..37b33ed40 100644
--- a/webapp/routes/route_integrations.jsx
+++ b/webapp/routes/route_integrations.jsx
@@ -47,13 +47,13 @@ export default {
{
path: 'add',
getComponents: (location, callback) => {
- System.import('components/integrations/components/add_outgoing_webhook.jsx').then(RouteUtils.importComponentSuccess(callback));
+ System.import('components/integrations/components/add_outgoing_webhook').then(RouteUtils.importComponentSuccess(callback));
}
},
{
path: 'edit',
getComponents: (location, callback) => {
- System.import('components/integrations/components/edit_outgoing_webhook.jsx').then(RouteUtils.importComponentSuccess(callback));
+ System.import('components/integrations/components/edit_outgoing_webhook').then(RouteUtils.importComponentSuccess(callback));
}
}
]