Merge branch 'master' into 1971-show-image-thumbnails
[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