20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / app / controllers / api_client_authorizations_controller.rb
diff --git a/apps/workbench/app/controllers/api_client_authorizations_controller.rb b/apps/workbench/app/controllers/api_client_authorizations_controller.rb
deleted file mode 100644 (file)
index 4a1256d..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-class ApiClientAuthorizationsController < ApplicationController
-  def index
-    m = model_class.all
-    items_available = m.items_available
-    offset = m.result_offset
-    limit = m.result_limit
-    filtered = m.to_ary.reject do |x|
-      x.api_client_id == 0 or (x.expires_at and x.expires_at < Time.now) rescue false
-    end
-    ArvadosApiClient.patch_paging_vars(filtered, items_available, offset, limit)
-    @objects = ArvadosResourceList.new(ApiClientAuthorization)
-    @objects.results= filtered
-    super
-  end
-
-  def index_pane_list
-    %w(Recent Help)
-  end
-
-end