Closed
Description
Q | A |
---|---|
Bug report? | no |
Feature request? | no |
BC Break report? | no |
RFC? | yes |
Symfony version | 4.1 |
I don't have real experience with Workflow, so this is a question for developers who have that experience. Don't you think that the name of the new workflow_build_transition_blocker_list()
Twig function is too long? Would it be better to make it more concise?
Example:
Before
{% for blocker in workflow_build_transition_blocker_list(article, transition.name) %}
...
{% endfor %}
After
{% for blocker in workflow_transition_blockers(article, transition.name) %}
...
{% endfor %}
or:
{% for blocker in workflow_blockers_list(article, transition.name) %}
...
{% endfor %}
or:
{% for blocker in workflow_blockers(article, transition.name) %}
...
{% endfor %}
Metadata
Metadata
Assignees
Labels
RFC = Request For Comments (proposals about features that you want to be discussed)RFC = Request For Comments (proposals about features that you want to be discussed)