Flowdock
method

reset_callbacks

Importance_2
v3.2.8 - Show latest stable - 2 notes - Class: ActiveSupport::Callbacks::ClassMethods
reset_callbacks(symbol) public

Remove all set callbacks for the given event.

Show source
Register or log in to add new notes.
July 28, 2011 - (v3.0.0 - v3.0.9)
0 thanks

sure, but what types are there to chose from?

the ‘symbol’ parameter is not something specific like ‘:after_save’, but rather ‘:save’

I suppose ‘:update’ works as well.

January 31, 2012 - (v3.0.0 - v3.1.0)
0 thanks

undocumented events/symbol/types

@nessur is right: drop the “before_” and “after_” prefixes and you have the possible values for the uninformatively named `symbol` param: create, save, update and validate.

So to remove all validations for a model do: `reset_callbacks :validate`