summaryrefslogtreecommitdiff
path: root/app/controllers/explore/groups_controller.rb
blob: 67db797b80a1a761d7ba033f4b4d8015c8f5be66 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class Explore::GroupsController < Explore::ApplicationController
  include GroupTree

  def index
    render_group_tree GroupsFinder.new(current_user).execute
  end
end