brendon / acts_as_list

An ActiveRecord plugin for managing lists.
http://brendon.github.io/acts_as_list/
MIT License
2.05k stars 356 forks source link

bulk update through act_as_list_no_update #171

Closed randoum closed 7 years ago

randoum commented 9 years ago

To newcomers : The conversation for this PR continues here #244

Allow to perform bulk update by disabling act_as_list callbacks

ActiveRecord::Base.act_as_list_no_update do
  TodoItem.find(5).update position: 17
  TodoItem.find(8).update position: 11
end

inspired from http://api.rubyonrails.org/classes/ActiveRecord/NoTouching/ClassMethods.html

randoum commented 7 years ago

@wikyd @nickpoorman @StoneFrog if you guys don't mind to participate to #244. Thanks