Module: FileRecord::Callbacks

Extended by:
ActiveSupport::Concern
Included in:
Base
Defined in:
lib/file_record/callbacks.rb

Instance Method Summary collapse

Instance Method Details

#destroyObject



16
17
18
# File 'lib/file_record/callbacks.rb', line 16

def destroy
  run_callbacks(:destroy) { super }
end

#saveObject



12
13
14
# File 'lib/file_record/callbacks.rb', line 12

def save
  run_callbacks(:save) { super }
end