Welcome to mirror list, hosted at ThFree Co, Russian Federation.

groups_controller.rb « explore « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97791b43d419c7f98dd595f22c677ebfee85f292 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

class Explore::GroupsController < Explore::ApplicationController
  include GroupTree

  feature_category :subgroups
  urgency :low

  def index
    render_group_tree GroupsFinder.new(current_user).execute
  end
end