I have the following nested resources in my rails 3 app.
resources :calendars do
resources :events
end
What is the recommended url/path for displaying (list or calendar) events for a specific calendar? Should I use the show method of the calendar controller (http://mydomain.com/calendars/1), or the index method of the events controller (http://mydomain.com/calendars/1/events)? Is it a matter of personal preference, or are there conventions/best practices for handling this situation?
Thanks!