my Rake Routes looks like this:
report GET /management/:id/report(.:format) report#show
In my controller code how can I access that :id parameter? Is it still by .params[:id] ?
I think I am confused because this time id is not the last thing in a URL and it is in the middle of the URL.