Add premium storage space to prepaid activations (#1099)

This commit is contained in:
drusepth 2022-03-10 12:44:19 -08:00
parent e66764fcfc
commit c4f0ce692f

View File

@ -27,6 +27,13 @@ class PayPalPrepayProcessingJob < ApplicationJob
unless invoice.status == 'COMPLETED'
invoice.update(status: 'COMPLETED')
invoice.generate_promo_code!
# Add the extra Premium space
SubscriptionService.add_any_referral_bonuses(invoice.user, 'premium')
# Rather than queueing up a job to run N months from now to reset space,
# we'll probably go with a worker that ensures everyone's space is correct
# every day. Worker TBD.
end
else