- πΊπΈUnited States smustgrave
Think if we are changing the schema for so many things they will need an upgrade path for existing sites. Which will require tests also.
Updated: Comment #1
Routes now uses $module.foo as the route names, so to be more consistent use the same kind of pattern for local actions.
use the route name + ".action" as each ID. Keeping the ID distinct from the route name will help avoid mistaken assumptions (especially in tests).
custom_block_type_add:
route_name: custom_block.type_add
title: 'Add custom block type'
appears_on:
- custom_block.type_list
custom_block.type_add.action:
route_name: custom_block.type_add
title: 'Add custom block type'
appears_on:
- custom_block.type_list
custom_block.type_add:
route_name: custom_block.type_add
title: 'Add custom block type'
appears_on:
- custom_block.type_list
-
plugin_id: custom_block.type_add
route_name: custom_block.type_add
title: 'Add custom block type'
appears_on:
- custom_block.type_list
Needs work
10.1 β¨
Last updated
Enhances developer experience.
Used to track the progress of issues reviewed by the Drupal Needs Review Queue Initiative.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Think if we are changing the schema for so many things they will need an upgrade path for existing sites. Which will require tests also.