Created
December 20, 2018 14:28
-
-
Save anagromataf/ec18dda17e44ce6f9c6710dfa08351bf to your computer and use it in GitHub Desktop.
This file contains 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 capture(checkout, payment) do | |
with {:ok, transaction} <- Capture.prepare(checkout, payment), | |
{:ok, persisted_transaction} <- Store.prepare(checkout, transaction), | |
{:ok, updated_checkout} <- Capture.commit(checkout, persisted_transaction), | |
{:ok, persisted_checkout} <- Store.commit(updated_checkout) do | |
{:ok, checkout} | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment