Merge branch 'master' into 2257-inequality-conditions
[arvados.git] / apps / workbench / app / controllers / pipeline_templates_controller.rb
1 class PipelineTemplatesController < ApplicationController
2   
3   def show
4     @objects = [] 
5     PipelineInstance.where(pipeline_template_uuid: @object.uuid).each do |pipeline|
6       @objects.push(pipeline)
7     end
8     super
9   end
10
11   def show_pane_list
12     %w(Components Pipelines Attributes Metadata JSON API)
13   end
14
15 end