gitlab-org--gitlab-foss/app/controllers/explore/groups_controller.rb

13 lines
246 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2015-04-30 13:06:18 -04:00
class Explore::GroupsController < Explore::ApplicationController
include GroupTree
feature_category :subgroups
urgency :low
def index
render_group_tree GroupsFinder.new(current_user).execute
end
end