Class: Admin::BannersController

Inherits:
BaseController
  • Object
show all
Defined in:
app/controllers/admin/banners_controller.rb

Instance Method Summary collapse

Instance Method Details

#reorderObject



4
5
6
7
8
# File 'app/controllers/admin/banners_controller.rb', line 4

def reorder
  params[:banner].each_with_index do |id, index|
    Banner.update_all(['position=?', index+1], ['id=?', id])
  end
end