Merge branch '8784-dir-listings'
[arvados.git] / apps / workbench / app / controllers / pipeline_templates_controller.rb
index 98101b5e9b0953b61060a554d54456d8c37b7841..7d94e3469a10792f148a32e5c3a84e67c564dbc4 100644 (file)
@@ -1,15 +1,21 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
+
 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