gitlab-org--gitlab-foss/app/controllers/dashboard/groups_controller.rb

9 lines
216 B
Ruby
Raw Normal View History

2015-04-30 17:06:18 +00:00
class Dashboard::GroupsController < Dashboard::ApplicationController
include GroupTree
def index
groups = GroupsFinder.new(current_user, all_available: false).execute
render_group_tree(groups)
end
end