Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
ebaeda8f
Commit
ebaeda8f
authored
Mar 14, 2019
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removes EE differences for pipeline_details_bundle
parent
516987e4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
app/assets/javascripts/pipelines/mixins/graph_pipeline_bundle_mixin.js
...vascripts/pipelines/mixins/graph_pipeline_bundle_mixin.js
+6
-0
app/assets/javascripts/pipelines/pipeline_details_bundle.js
app/assets/javascripts/pipelines/pipeline_details_bundle.js
+7
-1
No files found.
app/assets/javascripts/pipelines/mixins/graph_pipeline_bundle_mixin.js
0 → 100644
View file @
ebaeda8f
export
default
{
methods
:
{
clickTriggeredByPipeline
()
{},
clickTriggeredPipeline
()
{},
},
};
app/assets/javascripts/pipelines/pipeline_details_bundle.js
View file @
ebaeda8f
...
...
@@ -2,8 +2,9 @@ import Vue from 'vue';
import
Flash
from
'
~/flash
'
;
import
Translate
from
'
~/vue_shared/translate
'
;
import
{
__
}
from
'
~/locale
'
;
import
pipelineGraph
from
'
ee_else_ce/pipelines/components/graph/graph_component.vue
'
;
import
GraphEEMixin
from
'
ee_else_ce/pipelines/mixins/graph_pipeline_bundle_mixin
'
;
import
PipelinesMediator
from
'
./pipeline_details_mediator
'
;
import
pipelineGraph
from
'
./components/graph/graph_component.vue
'
;
import
pipelineHeader
from
'
./components/header_component.vue
'
;
import
eventHub
from
'
./event_hub
'
;
...
...
@@ -22,6 +23,7 @@ export default () => {
components
:
{
pipelineGraph
,
},
mixins
:
[
GraphEEMixin
],
data
()
{
return
{
mediator
,
...
...
@@ -44,6 +46,10 @@ export default () => {
},
on
:
{
refreshPipelineGraph
:
this
.
requestRefreshPipelineGraph
,
onClickTriggeredBy
:
(
parentPipeline
,
pipeline
)
=>
this
.
clickTriggeredByPipeline
(
parentPipeline
,
pipeline
),
onClickTriggered
:
(
parentPipeline
,
pipeline
)
=>
this
.
clickTriggeredPipeline
(
parentPipeline
,
pipeline
),
},
});
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment