debian-mirror-gitlab/app/controllers/explore/groups_controller.rb
2023-05-27 22:25:52 +05:30

19 lines
598 B
Ruby

# frozen_string_literal: true
class Explore::GroupsController < Explore::ApplicationController
include GroupTree
feature_category :subgroups
urgency :low
def index
# For gitlab.com, including internal visibility groups here causes
# a major performance issue: https://gitlab.com/gitlab-org/gitlab/-/issues/358944
#
# For self-hosted users, not including internal groups here causes
# a lack of visibility: https://gitlab.com/gitlab-org/gitlab/-/issues/389041
user = Gitlab.com? ? nil : current_user
render_group_tree GroupsFinder.new(user).execute
end
end