You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
New features
Store IDP session index in session to allow multiple sessions per user (#255)
BREAKING CHANGE: single logout is enabled by default. Set Devise.saml_session_index_key to nil to disable.
BREAKING CHANGE: single logout session index key is now stored in session instead of as a column on the User model. Remove Devise.saml_session_index_key from your Devise config and you can drop that column from your users table after this update is deployed.
Fixes
[refactor]use find_by instead of where + first (#233)