20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / app / controllers / groups_controller.rb
diff --git a/apps/workbench/app/controllers/groups_controller.rb b/apps/workbench/app/controllers/groups_controller.rb
deleted file mode 100644 (file)
index 6abd2ff..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright (C) The Arvados Authors. All rights reserved.
-#
-# SPDX-License-Identifier: AGPL-3.0
-
-class GroupsController < ApplicationController
-  def index
-    @groups = Group.filter [['group_class', '!=', 'project'], ['group_class', '!=', 'filter']]
-    @group_uuids = @groups.collect &:uuid
-    @links_from = Link.where(link_class: 'permission', tail_uuid: @group_uuids).with_count("none")
-    @links_to = Link.where(link_class: 'permission', head_uuid: @group_uuids).with_count("none")
-    render_index
-  end
-
-  def show
-    if @object.group_class == 'project' or @object.group_class == 'filter'
-      redirect_to(project_path(@object))
-    else
-      super
-    end
-  end
-end