Method: IndexController#recent_activity
- Defined in:
- app/controllers/index_controller.rb
#recent_activity ⇒ Object
13 14 15 16 |
# File 'app/controllers/index_controller.rb', line 13 def recent_activity @recent_actions = Action.recent(current_user.current_organization).where('import_id is null').page(params[:page]).per_page(10) render 'index/_recent_activity', :layout => false end |