Class: Nuntius::PushTransport
- Inherits:
-
BaseTransport
- Object
- BaseTransport
- Nuntius::PushTransport
- Defined in:
- app/transports/nuntius/push_transport.rb
Instance Method Summary collapse
-
#deliver(message) ⇒ Object
We split per email address, to allow easy resends.
Methods inherited from BaseTransport
class_from_name, #kind, #providers
Instance Method Details
#deliver(message) ⇒ Object
We split per email address, to allow easy resends
6 7 8 9 10 11 12 13 |
# File 'app/transports/nuntius/push_transport.rb', line 6 def deliver() .request_id = SecureRandom.uuid .to.split(",").each do |to| = .dup .to = to super() end end |