4091: enhance code to handle the case where there are more than one item in the next...
[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