debian-mirror-gitlab/app/controllers/explore/groups_controller.rb
2022-07-16 19:58:13 +02:00

12 lines
246 B
Ruby

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