Guest User

Untitled

a guest
May 4th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. def grant_motionbook_coupon!
  2. free_discount = PercentageDiscount.find(:first, :conditions => 'amount = 100')
  3. user.coupons << Coupon.new(:allowed_buyable_type => 'Motionbook',
  4. :discount => free_discount)
  5. user.save
  6. end
Add Comment
Please, Sign In to add comment