mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 19:11:13 +00:00
65edbb609c
This reverts commit 47e718f5b24cb2d8b991f5b1a51efe3f79f5f934.
24 lines
482 B
Ruby
24 lines
482 B
Ruby
# Allow after commits to work in test mode
|
|
if Rails.env.test?
|
|
|
|
class ActiveRecord::Base
|
|
class << self
|
|
def after_commit(*args, &block)
|
|
opts = args.extract_options! || {}
|
|
|
|
case opts[:on]
|
|
when :create
|
|
after_create(*args, &block)
|
|
when :update
|
|
after_update(*args, &block)
|
|
when :destroy
|
|
after_destroy(*args, &block)
|
|
else
|
|
after_save(*args, &block)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|