Tagged Questions
2
votes
2answers
447 views
ignore before_update when save
some case I don't want execute before_update. please help me.
case A: in case I want used before_update
obj = Object.find(id)
obj.save
but case B I don't want used before_update
obj = ...
2
votes
4answers
1k views
How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false?
I've added a before_create filter to one of my Rails ActiveRecord models and inside that filter I'm doing some database updates.
Sometimes I return false from the filter to prevent the creation of ...
0
votes
1answer
537 views
Rails 3 Override Destroy without Canceling callbacks, and triggering a ROLLBACK
My desired behavior is that when destroy is called on an instance, that instance will not actually be destroyed, but it will just be marked as having been destroyed. This needs to percolate up for ...