4523: Merge branch '4523-search-index' of git.curoverse.com:arvados into 4523-search...
[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