I'm passing the user session via a parameter (params['session_key']) for one controller (it's a flash upload script so I have to pass it via a param).
I don't know how to access the user session with authlogic by using the raw param string.
Normally I do this:
@current_user_session = UserSession.find
I thought I could do this:
@current_user_session = UserSession.find(session_key)
But passing the key as a parameter to the method doesn't appear to work.
Any idea how I look up the user session with authlogic when I can't access the session cookie and need to use a param with the session key?