Camilo Flores

Results 2 comments of Camilo Flores

@adamstegman yes, of course. `routes.rb` : ```ruby ... devise_for :users, controllers: { omniauth_callbacks: "users/omniauth_callbacks", sessions: 'users/sessions' } ... ``` and the relevant part of `rails routes`: ``` new_user_session GET /users/sign_in(.:format)...

Hi guys, sorry for the delay, I just couldn't check this out before. Just for the record, what I ended up doing was adding: ```ruby get 'users/saml/sign_out', to: 'devise/saml_sessions#destroy', as:...