Skip to content

Instantly share code, notes, and snippets.

@skwp
Created August 8, 2013 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skwp/6185227 to your computer and use it in GitHub Desktop.
Save skwp/6185227 to your computer and use it in GitHub Desktop.
def create
result = CheckoutOrder.execute current_user, params
if result.success?
# do a thing
elsif result.failed_for_one_reason
# do another thing
elsif result.failed_for_another_reason
# ...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment