20690: Remove workbench1 and testing/packaging references.
[arvados.git] / 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
deleted file mode 100644 (file)
index aa444c1..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-# 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 Advanced)
-  end
-end