X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e4f96fc61cd9c85f91bdb0020bc365f2f4825ffb..42c20b25e1325124b88e3b9b285544dc41122b56:/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..aa444c153b 100644 --- a/apps/workbench/app/controllers/pipeline_templates_controller.rb +++ b/apps/workbench/app/controllers/pipeline_templates_controller.rb @@ -1,15 +1,21 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + class PipelineTemplatesController < ApplicationController - + skip_around_action :require_thread_api_token, if: proc { |ctrl| + !Rails.configuration.Users.AnonymousUserToken.empty? 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