Hi,
I need several RSS feeds in my app. They are in a way similar to existing actions but with less options (no will_paginate, no sorting, only the most recent 20 results). So for example I have one action which shows all items tagged "amazing" and I also need one feed which shows the latest items tagged "amazing".
My question: Is it better practice to create a FeedsController with a "tag" action (that's what I'm doing now, it seems more clean to me) OR use respond_to in the TagsController's "show" action to do the slightly different find and serve the rss template? With the latter approach I would have both in one action but it's less clean.
What's your opinion?
Thanks!