X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c8060b94c485d5bf0e500d2321793cd56db4c856..df9e166a5ffc4aa79658bec1a5d552a3b413f0d8:/apps/workbench/app/controllers/pipeline_templates_controller.rb diff --git a/apps/workbench/app/controllers/pipeline_templates_controller.rb b/apps/workbench/app/controllers/pipeline_templates_controller.rb index 98101b5e9b..83ab88f612 100644 --- a/apps/workbench/app/controllers/pipeline_templates_controller.rb +++ b/apps/workbench/app/controllers/pipeline_templates_controller.rb @@ -1,15 +1,17 @@ class PipelineTemplatesController < ApplicationController - + skip_around_filter :require_thread_api_token, if: proc { |ctrl| + Rails.configuration.anonymous_user_token and + 'show' == ctrl.action_name + } + + include PipelineComponentsHelper + def show - @objects = [] - PipelineInstance.where(pipeline_template_uuid: @object.uuid).each do |pipeline| - @objects.push(pipeline) - end + @objects = PipelineInstance.where(pipeline_template_uuid: @object.uuid) super end def show_pane_list - %w(Components Pipelines Attributes Metadata JSON API) + %w(Components Pipelines Advanced) end - end