2961: Don't call #render_index from #index on folders_controller because #index
[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