blob: 3fdf5c3a58576f51b8567800ae90285fe0ed88a1 (
plain)
1
2
3
4
5
6
7
|
class Admin::EventsController < Admin::ApplicationController
EVENTS_PER_PAGE = 50
def index
@events = Event.admin.order('created_at DESC').page(params[:page]).per(EVENTS_PER_PAGE)
end
end
|