Created
February 21, 2017 16:15
-
-
Save tansengming/342ec58a7fd3e83631c16919585d8e14 to your computer and use it in GitHub Desktop.
This file contains 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 SmsSenderJob < ApplicationJob | |
def perform(recipient, community, message) | |
sms_credits = community.sms_credits | |
if sms_credits > 0 | |
send_sms recipient, message # this still takes a while. | |
# take off a credit | |
community.sms_credits = sms_credits - 1 | |
community.save | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment