You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a similar project (ar_after_transaction)[https://github.com/grosser/ar_after_transaction] that fixes the same problems, but also adds a after_transaction do block style callback, so users can e.g.
after_create :do_stuff, :oops
def do_stuff
after_transaction do
send_an_email # cannot be rolled back
end
comments.create(...) # will be rolled back
end
Is it possilbe to include this behavior -> id like to mark the project as obsolete and just link here.
The text was updated successfully, but these errors were encountered:
That's currently not possible in after_commit, but if you want to fork and patch it, I'll happily merge it in.
Pat
On 04/10/2011, at 1:59 AM, Michael Grosser wrote:
I have a similar project (ar_after_transaction)[https://github.com/grosser/ar_after_transaction] that fixes the same problems, but also adds a after_transaction do block style callback, so users can e.g.
after_create :do_stuff, :oops
def do_stuff
after_transaction do
send_an_email # cannot be rolled back
end
comments.create(...) # will be rolled back
end
Is it possilbe to include this behavior -> id like to mark the project as obsolete and just link here.
I have a similar project (ar_after_transaction)[https://github.com/grosser/ar_after_transaction] that fixes the same problems, but also adds a after_transaction do block style callback, so users can e.g.
Is it possilbe to include this behavior -> id like to mark the project as obsolete and just link here.
The text was updated successfully, but these errors were encountered: