debian-mirror-gitlab/app/controllers/dashboard/groups_controller.rb
2018-03-17 18:26:18 +05:30

9 lines
216 B
Ruby

class Dashboard::GroupsController < Dashboard::ApplicationController
include GroupTree
def index
groups = GroupsFinder.new(current_user, all_available: false).execute
render_group_tree(groups)
end
end