I have model like this
class Vote < ActiveRecord::Base
after_save :add_points_to_user
.....
end
Is it possible to somehow force model to skip calling add_points_to_user
when saved? Possibly something like ActiveRecord#delete
vs ActiveRecord#destroy
?