Skip to content

Instantly share code, notes, and snippets.

@diegoy
Created June 13, 2017 01:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diegoy/ccd88f8146ac656d427741bd200f802e to your computer and use it in GitHub Desktop.
Save diegoy/ccd88f8146ac656d427741bd200f802e to your computer and use it in GitHub Desktop.
class SendNewMessageNotifications
include Interactor #this is the gem
def call
Mailer.sent_message(context.destination,
context.message).deliver_later
AndroidNotification.sent_message(context.destination,
context.message)
AppleNotification.sent_message(context.destination,
context.message)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment