Issue Description
Feature: Support Multiple Prefixes by providing a handler version.
Concept
{
// ...
'/example/test': {
'GET': {
versions: {
'ExampleController.get': {
config: {
prefix: 'prefix.one'
pre: [ 'ExamplePolicy.get' ]
}
},
'ExampleController.getTwo': {
config: {
prefix: 'prefix.two'
pre: [ 'ExamplePolicy.get' ]
}
}
}
},
'POST': {
handler: 'ExampleController.post',
config: {
prefix: '/api/v2'
pre: [ 'ExamplePolicy.post' ]
}
}
}
// ...
}
Issue Description
Feature: Support Multiple Prefixes by providing a handler version.
Concept