2018-09-23 15:44:14 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-04-30 13:06:18 -04:00
|
|
|
class Explore::GroupsController < Explore::ApplicationController
|
2017-09-13 11:16:30 -04:00
|
|
|
include GroupTree
|
2017-03-01 08:31:56 -05:00
|
|
|
|
2020-10-02 08:09:03 -04:00
|
|
|
feature_category :subgroups
|
|
|
|
|
2017-09-13 11:16:30 -04:00
|
|
|
def index
|
|
|
|
render_group_tree GroupsFinder.new(current_user).execute
|
2014-07-11 12:29:51 -04:00
|
|
|
end
|
|
|
|
end
|