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

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

  private
    def route_later
      ActionMailroom::RoutingJob.perform_later self
    end
end