-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Add the possibility to have nested paths like :
// Routes config
const routes = {
persons: {
host: 'https://wwww.google.com',
path: '/persons',
findById: {
path: "/{id}",
getSettings: {
path: '/settings'
}
}
}
}
Use
routing.generate('persons.findById.getSettings', {id: xxx})
Generates
https://www.google.com/persons/xxx/settings
Reactions are currently unavailable