I'm working on a rails app that integrates with other systems (which can't be changed), and I need to handle the case below:
A user is redirected to my app with a URL like:
http://myapp.com/index?action=signout
The problem is, I can't access this param through params[:action], since Rails uses that to keep track of the current action.
Is there a way around this?