Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Orders state machine doc removing confirmation_required text #2658

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions guides/orders/order-state-machine.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,8 @@ There are six order states by default:
If you go through the checkout provided in the `solidus_frontend` gem, you can
see that there is a clearly defined step for each of these states during checkout.

In some circumstances, the `payment` and `confirm` states are optional:

- The `payment` state is only triggered if `payment_required?` returns `true`.
- The `confirm` state is only triggered if `confirmation_required?` returns
`true`.
The `payment` state is optional and it's only triggered if `payment_required?`
returns `true`.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree, we could have alternatively merged the paragraphs. But they are about different states.


The `complete` state is triggered in one of two ways:

Expand Down