Skip to content

Instantly share code, notes, and snippets.

@ejlangev
Created March 26, 2014 21:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ejlangev/9794087 to your computer and use it in GitHub Desktop.
Save ejlangev/9794087 to your computer and use it in GitHub Desktop.
class Postman
include Interactor
def perform(context)
create_message_log
CreateMessageSummary.perform(context)
EnqueueMessageJob.perform(context)
end
private
def create_message_log
if member.push_token_registered?
CreatePushMessageLog.perform(context)
else
CreateSmsMessageLog.perform(context)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment