framework: workflows: blog_publishing: type: 'workflow' # or 'state_machine' audit_trail: enabled: true marking_store: type: 'method' property: 'currentPlace' supports: - App\Entity\Article initial_marking: draft places: # defining places manually is optional - draft - reviewed - rejected - published transitions: to_review: guard: is_granted('edit, 'article') from: rejected to: reviewed publish: guard: is_granted('edit', 'article') from: [reviewed, draft] to: published reject: guard: is_granted('ROLE_MODERATOR') from: [reviewed, published] to: rejected to_draft: guard: is_granted('edit, 'article') from: published to: draft