views:

270

answers:

1

I have an after_save filter which I dont want to trigger in a specific instance. Is there a way to do this similar to save_without_validation?

Thanks,

+1  A: 

There is a good example of extending ActiveRecord to provide callback skipping here: http://integrumbles.com/tags/ActiveRecord

Michael Sepcot