aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/action_mailroom/inbound_email/routable.rb
blob: 5075db326eaa4c799b79d972db7645b99c84ce3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module ActionMailroom::InboundEmail::Routable
  extend ActiveSupport::Concern

  included do
    after_create_commit :route_later, if: ->(inbound_email) { inbound_email.pending? }
  end

  def route_later
    ActionMailroom::RoutingJob.perform_later self
  end
end