I have a nested route like so:
resources :apps do resources :issues end
the helper for seeing all issues related to an app is as fo
you can pass both instances to url helper like
app_issue_url(@app,@issue)
you can also use
app_issue_path(@app,@issue)
or
url_for([@app,@issue])
see rails doc for more info