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: aa4196b1c18c24ba63a0db1867670910dbc1b1a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

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

  feature_category :subgroups

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