Hello!
I would like to follow the automatic MVC routing schema (/controller/action/parameters), but for some specific actions, I should only accept integer parameters. Is it possible to achieve such a behavior while sticking to the MVC routing schema as a fallback for other actions?
Also, I'm currently trying to separate the DB functionality from the frontend into an API controller. Is it possible to request data from other controllers using the dispatcher? (In this case, I'd like to request some data from the ApiController, using the UsersController.)