1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 class PipelineTemplatesController < ApplicationController
6 skip_around_action :require_thread_api_token, if: proc { |ctrl|
7 !Rails.configuration.Users.AnonymousUserToken.empty? and
8 'show' == ctrl.action_name
11 include PipelineComponentsHelper
14 @objects = PipelineInstance.where(pipeline_template_uuid: @object.uuid)
19 %w(Components Pipelines Advanced)