8000 [WiP] Document Workflow 4.3 changes by pbowyer · Pull Request #11211 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

[WiP] Document Workflow 4.3 changes #11211

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

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update initial_place to initial_places.
Add missing `initial_places` to PHP configuration example. Someone needs to add it to the XML
  • Loading branch information
pbowyer committed Apr 7, 2019
commit 6c636cbd5e24f59aaeda375b0e62dd340ee24a1e
3 changes: 2 additions & 1 deletion workflow/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ like this:
- 'currentPlace'
supports:
- App\Entity\BlogPost
initial_place: draft
initial_places: [draft]
places:
- draft
- review
Expand Down Expand Up @@ -136,6 +136,7 @@ like this:
],
],
'supports' => ['App\Entity\BlogPost'],
'initial_places' => ['draft'],
'places' => [
'draft',
'review',
Expand Down
0