debian-mirror-gitlab/app/controllers/explore/groups_controller.rb
2018-12-05 23:21:45 +05:30

10 lines
200 B
Ruby

# frozen_string_literal: true
class Explore::GroupsController < Explore::ApplicationController
include GroupTree
def index
render_group_tree GroupsFinder.new(current_user).execute
end
end