Guest User

Untitled

a guest
Jul 20th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. def activate
  2. @giftcard = Giftcard.find(params[:id])
  3.  
  4. if @giftcard.activate
  5. redirect_confirm "Giftcard has been successfully activated!", admin_giftcards_url
  6. else
  7. redirect_error @giftcards.errors.full_messages.join(' '), :back, admin_giftcards_url
  8. end
  9. end
Add Comment
Please, Sign In to add comment