20032: Fix unnecessary race in test.
[arvados.git] / apps / workbench / app / controllers / groups_controller.rb
index 854496a56a27c2e73e4a2b6a68cbc8803a440bac..6abd2ff11d1b6a655be0dacd6e10a1dc398a9ddb 100644 (file)
@@ -1,13 +1,21 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
+
 class GroupsController < ApplicationController
   def index
-    @groups = Group.filter [['group_class', 'not in', ['folder']]]
+    @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
-    @links_to = Link.where link_class: 'permission', head_uuid: @group_uuids
+    @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
-    return redirect_to(folder_path(@object)) if @object.group_class == 'folder'
-    super
+    if @object.group_class == 'project' or @object.group_class == 'filter'
+      redirect_to(project_path(@object))
+    else
+      super
+    end
   end
 end