Created
March 26, 2014 21:31
-
-
Save ejlangev/9794087 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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