- Issue created by @phenaproxima
Recipes can list config to import from modules and themes. Right now, there are three ways for them to do it:
config:
import:
# Import everything from Taxonomy
taxonomy: '*'
# Import nothing from Node
node: null
# Import only certain things from Media
media:
- image.style.media_thumbnail
There's an additional case we should support - all config entities of a certain type:
config:
import:
media:
- image.style.*
Some reasonable limitations we should impose:
image.style.media_*
is not allowed.image.*
isn't allowed. Nor is image.*.media_thumbnail
.Add this feature as specified, with some test coverage.
Active
11.0 π₯
recipe system