Created
October 13, 2010 10:30
-
-
Save leikind/623802 to your computer and use it in GitHub Desktop.
Myself versus consultants #2
This file contains hidden or 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
def create | |
Order.transaction do | |
ArticlePurchase.transaction do | |
@order = create_order # can go wrong due to programmers' mistakes | |
@order.purchase # can go wrong due to programmers' mistakes | |
flash[:notice] = :order_successfully_created.l | |
end | |
end | |
redirect_to account_root_path | |
rescue # Intercepting ALL errors, so the user is | |
# always to blame whichever error was produced!!! | |
flash[:error] = "You don't have enough points" | |
redirect_to account_root_path | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment