In one of the configuration files of Symfony 5.2.8 with Workflow 5.2.7 I have: When I execute bin/console I have error: Unrecognized option “arguments” under framework.workflows.workflows.register_participation.marking_store”. Available options are “property”, “service”, “type”. When I change the configuration to: I get the error: The value “multiple_state” is not allowed for path framework.workflows.workflows.register_participation.marking_store.type”. Permissible values: “method” It works when I change to
Tag: symfony-workflows
Symfony Workflow Component and Security Voters?
TL;DR: how can you add custom constraints (i.e. security voters) to transitions? My application needs some workflow management system, so I’d like to try Symfony’s new Workflow Component. Let’s take a Pull Request workflow as an example. In this example, only states and their transitions are describes. But what if I want to add other constraints to this workflow? I