If you have configured a session key in your application controller like so:
# Pick a unique cookie name to distinguish our session data from others'
session :session_key => '_myapp_session_id'
Comatose does not pick up on it, instead using the default "_session_id". This is due to the fact that Comatose
inherits from ActionController::Base rather than the ApplicationController used by the rest of the app. This causes
problems with eg login and authentication integration.
I do not know how this is usually handled by plugins. At the very least, some sort of configuration option could address
this. |