summaryrefslogtreecommitdiff
path: root/app/controllers/explore/groups_controller.rb
blob: c51a4a211a6210688350602240c8f6f5c5a744d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class Explore::GroupsController < ApplicationController
  skip_before_filter :authenticate_user!,
                     :reject_blocked, :set_current_user_for_observers

  layout "explore"

  def index
    @groups = GroupsFinder.new.execute(current_user)
    @groups = @groups.search(params[:search]) if params[:search].present?
    @groups = @groups.sort(@sort = params[:sort])
    @groups = @groups.page(params[:page]).per(PER_PAGE)
  end
end