20846: Merge branch '19213-ubuntu2204-support' into 20846-ubuntu2204
[arvados.git] / apps / workbench / app / controllers / pipeline_templates_controller.rb
index afe41c47a67c9b95d7c7d28d0d6c88082ef6b6d1..aa444c153b6163d3a65d43bbeb790d2c06688844 100644 (file)
@@ -1,11 +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)
     super
   end
 
   def show_pane_list
-    %w(Components Pipelines Attributes Metadata JSON API)
+    %w(Components Pipelines Advanced)
   end
 end