I have 2 urls like :
- /test/run
- /test/{test_id}
I have 2 separate routes for them like:
1. {
prefix: '/test',
pin: 'role:test,cmd:*',
map:{
run: {GET: true}
}
}
2. {
pin: 'role:test,cmd:*',
map:{
test: {GET: true, suffix: '/:test_id'}
}
}
However when I access /test/run. The second pattern gets triggered with run as a URL parameter.
Is this the expected behaviour or is there some other way to do this ?
You have to set different patterns ( Otherwise seneca will not be able to distinguish them)
pin
for the seneca plugins with
seneca.use('role:web', {..})
and actionseneca.act('role:test,cmd:test,action:byId', (..)=>{..})