You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Need a way to define generic department specific configurations and have them automatically apply to many/all uri's without needing to define the department overrides on every uri configuration.
Solution
Add the ability to specify wildcards for the context of an config.
{
"name": "Pipeline",
"context": ["**"],
...
}
Setting context to ["**"] would mean that any URI ending with /Pipeline would get this config applied. A single * would match a specific section of the uri, and ** would match multiple uri sections.
Description
Need a way to define generic department specific configurations and have them automatically apply to many/all uri's without needing to define the department overrides on every uri configuration.
Solution
Add the ability to specify wildcards for the context of an config.
Setting context to
["**"]
would mean that any URI ending with/Pipeline
would get this config applied. A single*
would match a specific section of the uri, and**
would match multiple uri sections.Example URI's that would load the above config:
example/Pipe
example/Pipeline
example/uri/with/more/sections/Pipeline
You can mix and match wildcards and static values:
not_set/example/static/case/Pipeline
not_set/example/extra/static/case/Pipeline
not_set/example/extra/static/case/case/Pipeline
not_set/example/case/Pipeline
other/example/static/case/Pipeline
Additional Context
No response
The text was updated successfully, but these errors were encountered: