projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' into 2051-nondeterministic-jobs
[arvados.git]
/
apps
/
workbench
/
app
/
controllers
/
pipeline_templates_controller.rb
1
class PipelineTemplatesController < ApplicationController
2
3
def show
4
@objects = PipelineInstance.where(pipeline_template_uuid: @object.uuid)
5
super
6
end
7
8
def show_pane_list
9
%w(Components Pipelines Attributes Metadata JSON API)
10
end
11
12
end