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: fa0a0f68fbc45e2dd8b96e6600fcb2d2ed35d57e (plain)
1
2
3
4
5
6
7
class Explore::GroupsController < Explore::ApplicationController
  include GroupTree

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