Files
nairobi/app/controllers/admin/activity_controller.rb
2015-09-22 16:30:43 +02:00

9 lines
249 B
Ruby

class Admin::ActivityController < Admin::BaseController
has_filters %w{all on_users on_proposals on_debates on_comments}
def show
@activity = Activity.for_render.send(@current_filter).order(created_at: :desc).page(params[:page])
end
end