projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch '3112-report-bug' into 3642-search-for-active-only
[arvados.git]
/
apps
/
workbench
/
app
/
controllers
/
pipeline_templates_controller.rb
1
class PipelineTemplatesController < ApplicationController
2
include PipelineComponentsHelper
3
4
def show
5
@objects = PipelineInstance.where(pipeline_template_uuid: @object.uuid)
6
super
7
end
8
9
def show_pane_list
10
%w(Components Pipelines Advanced)
11
end
12
end