summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/pipelines_index.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/pipelines/pipelines_index.js')
-rw-r--r--app/assets/javascripts/pipelines/pipelines_index.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/assets/javascripts/pipelines/pipelines_index.js b/app/assets/javascripts/pipelines/pipelines_index.js
index 0e2e9785956..9ed4365ad75 100644
--- a/app/assets/javascripts/pipelines/pipelines_index.js
+++ b/app/assets/javascripts/pipelines/pipelines_index.js
@@ -27,6 +27,8 @@ export const initPipelinesIndex = (selector = '#pipelines-list-vue') => {
errorStateSvgPath,
noPipelinesSvgPath,
newPipelinePath,
+ addCiYmlPath,
+ suggestedCiTemplates,
canCreatePipeline,
hasGitlabCi,
ciLintPath,
@@ -37,6 +39,10 @@ export const initPipelinesIndex = (selector = '#pipelines-list-vue') => {
return new Vue({
el,
+ provide: {
+ addCiYmlPath,
+ suggestedCiTemplates: JSON.parse(suggestedCiTemplates),
+ },
data() {
return {
store: new PipelinesStore(),