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:
Diffstat (limited to 'app/assets/javascripts/pipelines/pipeline_details_notification.js')
-rw-r--r--app/assets/javascripts/pipelines/pipeline_details_notification.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/app/assets/javascripts/pipelines/pipeline_details_notification.js b/app/assets/javascripts/pipelines/pipeline_details_notification.js
deleted file mode 100644
index b480fc7c713..00000000000
--- a/app/assets/javascripts/pipelines/pipeline_details_notification.js
+++ /dev/null
@@ -1,31 +0,0 @@
-import Vue from 'vue';
-import VueApollo from 'vue-apollo';
-import DeprecatedKeywordNotification from './components/notification/deprecated_type_keyword_notification.vue';
-
-Vue.use(VueApollo);
-
-export const createPipelineNotificationApp = (elSelector, apolloProvider) => {
- const el = document.querySelector(elSelector);
-
- if (!el) {
- return;
- }
-
- const { deprecatedKeywordsDocPath, fullPath, pipelineIid } = el.dataset;
- // eslint-disable-next-line no-new
- new Vue({
- el,
- components: {
- DeprecatedKeywordNotification,
- },
- provide: {
- deprecatedKeywordsDocPath,
- fullPath,
- pipelineIid,
- },
- apolloProvider,
- render(createElement) {
- return createElement('deprecated-keyword-notification');
- },
- });
-};