debian-mirror-gitlab/app/controllers/explore/groups_controller.rb
2021-01-03 14:25:43 +05:30

12 lines
231 B
Ruby

# 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