devise_cas_authenticatable icon indicating copy to clipboard operation
devise_cas_authenticatable copied to clipboard

CAS authentication support for Devise

Results 17 devise_cas_authenticatable issues
Sort by recently updated
recently updated
newest added

RackCAS's Fake CAS is automatically included by RackCAS in the Rails test environment and comes with a hardcoded /logout route. This change redirects to /logout when server_url is not set...

In test, RackCAS's Fake CAS always seems to redirect back to CasAuthenticatableController#new, which always returns 401, which creates a loop. It does create the session correctly but after signing in...

In `config/routes.rb`, `devise_for` can take a `skip` argument for skipping routes. This works fine for built-in strategies, but doesn't seem to affect `devise_cas_authenticatable`. Is there any way to do this?

Hi , I am getting these two issue while running test suite. ``` Devise::Strategies::CasAuthenticatable should fail CAS login if user is unregistered and cas_create_user is false Failure/Error: visit destroy_user_session_url ActionController::RoutingError:...

Hi Nat, After CAS emits the single sign out signal, some client apps (2/4) display the following log: ``` Processing by Devise::CasSessionsController#single_sign_out as */* Parameters: {"logoutRequest"=>"\n @NOT_USED@\n ST-14444029573823-15h6UlLwCJxqMmP7ofbvKl9R9rjISFMI4ydVAyZm\n\n"} Intercepted single-sign-out...

Hello, The sign out works well but not the single sign out. When I'm sign out from siteA I still logged in siteB even if I set "config.cas_enable_single_sign_out = true"...

Trying to logout user but am getting that error. I'm using rails 4.0. Specifically: NoMethodError (undefined method `destroy_session' for nil:NilClass) Which is coming from app/controllers/devise/cas_sessions_controller.rb:27:in `destroy'

After I logged in successfully against `rubycas-server`, I got this error: ``` Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-18 23:48:03 +0800 Processing by Devise::CasSessionsController#new as HTML Redirected to http://cas.mydomain.com/login?service=http%3A%2F%2F127.0.0.1%3A3000%2Fusers%2Fservice Completed...

When i am trying to do the signout from one app,other apps session is not destroying. I make all the configuration correct but still not able to make it work....

When the devise timeoutable module is included, warden clears sessions after a period of inactivity and redirects to the CAS. Depending on the CAS implementation, this can cause problems because...