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

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

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