I want to register multiple routes for one callback like below. I sperated them with "," character just for show what i mean. Is it possible to do such a thing ?
this.get('/Posts/MostVoteds, /Posts/Mostpopular, /Posts/blabla', function (ctx) {
});
As soon as paths could be defined both as strings and regular expressions you could try merging paths mentioned in a single regular expression, i.e.