eb5f3793d71b3042cc3fa1138f057c7c3ff9302b
[arvados.git] / apps / workbench / app / controllers / pipeline_templates_controller.rb
1 class PipelineTemplatesController < ApplicationController
2   if Rails.configuration.anonymous_user_token
3     skip_around_filter :require_thread_api_token, only: :show
4   end
5
6   include PipelineComponentsHelper
7
8   def show
9     @objects = PipelineInstance.where(pipeline_template_uuid: @object.uuid)
10     super
11   end
12
13   def show_pane_list
14     %w(Components Pipelines Advanced)
15   end
16 end