Module: ActiveRecord::Suppressor
Overview
ActiveRecord::Suppressor prevents the receiver from being saved during a given block.
For example, here's a pattern of creating notifications when new comments are posted. (The notification may in turn trigger an email, a push notification, or just appear in the UI somewhere):
class Comment < ActiveRecord::Base
belongs_to :commentable, polymorphic: true
after_create -> { Notification.create! comment: self,
recipients: commentable.recipients }
end
That's what you want the bulk of the time. New comment creates a new Notification. But there may well be off cases, like copying a commentable and its comments, where you don't want that. So you'd have a concern something like this:
module Copyable
def copy_to(destination)
Notification.suppress do
# Copy logic that creates new comments that we do not want
# triggering notifications.
end
end
end
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
-
#save ⇒ Object
:nodoc:.
-
#save! ⇒ Object
:nodoc:.
Instance Method Details
#save ⇒ Object
:nodoc:
43 44 45 |
# File 'lib/active_record/suppressor.rb', line 43 def save(*, **) # :nodoc: SuppressorRegistry.suppressed[self.class.name] ? true : super end |
#save! ⇒ Object
:nodoc:
47 48 49 |
# File 'lib/active_record/suppressor.rb', line 47 def save!(*, **) # :nodoc: SuppressorRegistry.suppressed[self.class.name] ? true : super end |