Just in case someone is curious. Param chains need to be defined like
account/details&id=1,someOther=false,b=test
and the according route template has to look as follows
- ':controller/:action&:params route': function(routeData) {
- /*
- routeData will be an object that looks as follows:
- {
- controller: 'account',
- action: 'detail',
- params: 'id=1,someOther=false,b=test'
- }
- */
- }