summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2018-01-08 14:34:39 +0000
committerPhil Hughes <me@iamphill.com>2018-01-09 08:40:48 +0000
commit2f86f64f3481947c534ab5840e3cecdd6b317671 (patch)
treeafe57a9e9729f423ebeeaff2c0b50e6ffd441687
parent90d4d9b5f5c3a2d90a5c1c28dfe45b6887f299f5 (diff)
downloadgitlab-ce-ph-dispatcher-1.tar.gz
Added admin:conversational_development_index:show import to dispatcherph-dispatcher-1
-rw-r--r--app/assets/javascripts/dispatcher.js2
-rw-r--r--app/assets/javascripts/pages/admin/conversational_development_index/show/index.js3
2 files changed, 4 insertions, 1 deletions
diff --git a/app/assets/javascripts/dispatcher.js b/app/assets/javascripts/dispatcher.js
index 816fbb5b98e..1f554be6046 100644
--- a/app/assets/javascripts/dispatcher.js
+++ b/app/assets/javascripts/dispatcher.js
@@ -544,7 +544,7 @@ import Activities from './activities';
import('./pages/users/show').then(callDefault).catch(fail);
break;
case 'admin:conversational_development_index:show':
- new UserCallout();
+ import('./pages/admin/conversational_development_index/show').then(m => m.default()).catch(fail);
break;
case 'snippets:show':
import('./pages/snippets/show').then(m => m.default()).catch(fail);
diff --git a/app/assets/javascripts/pages/admin/conversational_development_index/show/index.js b/app/assets/javascripts/pages/admin/conversational_development_index/show/index.js
new file mode 100644
index 00000000000..6e66ef69fe1
--- /dev/null
+++ b/app/assets/javascripts/pages/admin/conversational_development_index/show/index.js
@@ -0,0 +1,3 @@
+import UserCallout from '../../../../user_callout';
+
+export default () => new UserCallout();