`after_commit` in ActiveRecord::Observer
after_commit
method in ActiveRecord::Base can have some conditional options, that ActiveRecord::Observer can't have
class User < ActiveRecord::Base
after_commit :do_something, on: :create
def do_something
# ...
end
end
to move that callback to Observer you should use method transaction_include_action?
.
class UserObserver < ActiveRecord::Observer
def after_commit(user)
if user.send(:transaction_include_action?, :create)
# ...
end
end
end
Note: you should call method with send
, because it's protected
Written by Alan Daud
Related protips
2 Responses
Oh, thanks! That's what I'm looking for!
over 1 year ago
·
thanks! but i'm curious about is it the only possible way to do this? it seems to be
over 1 year ago
·
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Ruby
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#