Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. if params[:amount].blank? || params[:amount].to_f == 0.0
  2. flash[:notice] = "Invalid Amount, you need to specify a number greater than zero & with no decimals"
  3. redirect_to new_challenge_donations_path
  4. end
  5. if charge["paid"] == true
  6. saved = @donation.save
  7. redirect_to root_path
  8. flash[:notice] = "Thanks for your donation, Feel free to donate again."
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement