1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/app/models/action_mailbox/inbound_email/routable.rb
David Heinemeier Hansson 8a0a103495 ActionMailroom -> ActionMailbox
We didn't end up using the mailroom metaphor directly, so let's stick with a more conventional naming strategy.
2018-09-28 12:19:43 -07:00

11 lines
263 B
Ruby

module ActionMailbox::InboundEmail::Routable
extend ActiveSupport::Concern
included do
after_create_commit :route_later, if: ->(inbound_email) { inbound_email.pending? }
end
def route_later
ActionMailbox::RoutingJob.perform_later self
end
end