summaryrefslogtreecommitdiffstats
path: root/webapp/routes
diff options
context:
space:
mode:
authorn1aba <n1aba.github@gmail.com>2017-08-18 08:42:10 -0500
committerHarrison Healey <harrisonmhealey@gmail.com>2017-08-18 09:42:10 -0400
commitf40f41ed536edb76c9873c0cdd5dc8685b0f950f (patch)
treeb53f73c702c4e40cb9a5140b8cd3e5f2da9aaf46 /webapp/routes
parent9097289c2ce2b719a5aa0f9d567594f2b6a7e30b (diff)
downloadchat-f40f41ed536edb76c9873c0cdd5dc8685b0f950f.tar.gz
chat-f40f41ed536edb76c9873c0cdd5dc8685b0f950f.tar.bz2
chat-f40f41ed536edb76c9873c0cdd5dc8685b0f950f.zip
PLT-6443 Migrate add_oauth_app.jsx to be pure and use Redux (#7232)
* Migrate add_oauth_app.jsx to be pure and use Redux, add tests * Remove unused flux code for OAuthApps
Diffstat (limited to 'webapp/routes')
-rw-r--r--webapp/routes/route_integrations.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/routes/route_integrations.jsx b/webapp/routes/route_integrations.jsx
index c3cf3ae78..13abeb869 100644
--- a/webapp/routes/route_integrations.jsx
+++ b/webapp/routes/route_integrations.jsx
@@ -102,7 +102,7 @@ export default {
{
path: 'add',
getComponents: (location, callback) => {
- System.import('components/integrations/components/add_oauth_app.jsx').then(RouteUtils.importComponentSuccess(callback));
+ System.import('components/integrations/components/add_oauth_app').then(RouteUtils.importComponentSuccess(callback));
}
}
]