debian-mirror-gitlab/app/controllers/dashboard/groups_controller.rb
2018-03-27 19:54:05 +05:30

11 lines
258 B
Ruby

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