I am making a documentation for the OSS I am about to publish. The url is going to be like /Documentation/{class name}
. All the documentation view are named as {namespace}_{classname}
. Basically i wonder if there is a way to direct all requests to /Documentation/*
to a method inside my Documentation controller so that i can do something like
return View({class name});
instead of having to make a method for each class