diff options
author | Kyle Heironimus <kheironimus@decisiv.net> | 2014-04-10 14:58:36 -0500 |
---|---|---|
committer | Kyle Heironimus <kheironimus@decisiv.net> | 2014-04-10 14:58:36 -0500 |
commit | 16f481b28bb1299e5aa5c610ca4c90be8482edc7 (patch) | |
tree | ed0d127f83ade9c2abcc7c1f9f2a39e1b2a5d1cb /guides | |
parent | 1938c9646b7edcae88817a9b3b0e5d8b897ecc77 (diff) | |
download | rails-16f481b28bb1299e5aa5c610ca4c90be8482edc7.tar.gz rails-16f481b28bb1299e5aa5c610ca4c90be8482edc7.tar.bz2 rails-16f481b28bb1299e5aa5c610ca4c90be8482edc7.zip |
Add after_commit/after_rollback to callback list
Adding after_commit/after_rollback to list of callbacks in order helps
explain the callback order as well as making it consistent with the API
docs at http://api.rubyonrails.org/classes/ActiveRecord/Callbacks.html
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_record_callbacks.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/guides/source/active_record_callbacks.md b/guides/source/active_record_callbacks.md index 667433285f..fbcce325ed 100644 --- a/guides/source/active_record_callbacks.md +++ b/guides/source/active_record_callbacks.md @@ -92,6 +92,7 @@ Here is a list with all the available Active Record callbacks, listed in the sam * `around_create` * `after_create` * `after_save` +* `after_commit/after_rollback` ### Updating an Object @@ -103,12 +104,14 @@ Here is a list with all the available Active Record callbacks, listed in the sam * `around_update` * `after_update` * `after_save` +* `after_commit/after_rollback` ### Destroying an Object * `before_destroy` * `around_destroy` * `after_destroy` +* `after_commit/after_rollback` WARNING. `after_save` runs both on create and update, but always _after_ the more specific callbacks `after_create` and `after_update`, no matter the order in which the macro calls were executed. |