refs #2871
[arvados.git] / apps / workbench / app / controllers / groups_controller.rb
1 class GroupsController < ApplicationController
2   def index
3     @groups = Group.filter [['group_class', 'not in', ['folder']]]
4     @group_uuids = @groups.collect &:uuid
5     @links_from = Link.where link_class: 'permission', tail_uuid: @group_uuids
6     @links_to = Link.where link_class: 'permission', head_uuid: @group_uuids
7     render_index
8   end
9
10   def show
11     return redirect_to(folder_path(@object)) if @object.group_class == 'folder'
12     super
13   end
14 end