I a implementing single table inheritance but am having some trouble with the routing. I have two classes, Gamma and Beta, and both inherit from Alpha. I know that if I want to use Alpha as the controller as opposed to individual controllers for Beta and Gamma, I can follow the instructions here for having a resource default to another controller.
However, what I want to do is have some methods be handled by a central Alpha controller (e.g. edit and update), while other methods be handled by the subclass Beta and Gamma controllers. How can I specify which methods should be pointed to the Alpha controller and which should remain to be handled by Beta and Gamma?