module Hertz::Courier::Intercom

Constants

VERSION

Public Class Methods

configure() { |self| ... } click to toggle source
# File lib/hertz/courier/intercom.rb, line 16
def configure
  yield(self)
end
deliver_notification(notification) click to toggle source
# File lib/hertz/courier/intercom.rb, line 20
def deliver_notification(notification)
  Hertz::Courier::Intercom::NotificationDeliveryJob
    .perform_later(notification)
end