Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2017-12-21 02:20:51 +0300
committerMike Greiling <mike@pixelcog.com>2017-12-21 02:20:51 +0300
commit0e50e9d9d48752a58b640064075f7786f86e7433 (patch)
treebb18561ca7c0f584cf001462fca502845685bbab /app/assets/javascripts/pages/users
parent58b8b80787c47185bbca59bbb2039c2ba9022d27 (diff)
update dispatcher to allow for dynamic imports until webpack plugin is updated
Diffstat (limited to 'app/assets/javascripts/pages/users')
-rw-r--r--app/assets/javascripts/pages/users/show/index.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/assets/javascripts/pages/users/show/index.js b/app/assets/javascripts/pages/users/show/index.js
new file mode 100644
index 00000000000..f18f98b4e9a
--- /dev/null
+++ b/app/assets/javascripts/pages/users/show/index.js
@@ -0,0 +1,3 @@
+import UserCallout from '~/user_callout';
+
+export default () => new UserCallout();