SO I am trying to make a restful api system with symfony and I am a little confused about something. So every different route gets sent to a different action method to be handled, however, many different actions display the same sort of data (list of users or a list of groups). I don't want to have to have redundant templates just because the action name and the template need to be in sync. Is there anyway to have several actions forward to the same template?
Thanks!