20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / app / helpers / arvados_api_client_helper.rb
diff --git a/apps/workbench/app/helpers/arvados_api_client_helper.rb b/apps/workbench/app/helpers/arvados_api_client_helper.rb
deleted file mode 100644 (file)
index 929b649..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright (C) The Arvados Authors. All rights reserved.
-#
-# SPDX-License-Identifier: AGPL-3.0
-
-module ArvadosApiClientHelper
-  def arvados_api_client
-    ArvadosApiClient.new_or_current
-  end
-end
-
-# For the benefit of themes that still expect $arvados_api_client to work:
-class ArvadosClientProxyHack
-  def method_missing *args
-    ArvadosApiClient.new_or_current.send(*args)
-  end
-end
-$arvados_api_client = ArvadosClientProxyHack.new