From 8115d6ede471d07365e7f8f1a6f242d5ef4a407b Mon Sep 17 00:00:00 2001 From: Felipe Lessa Date: Mon, 25 May 2015 16:20:19 -0300 Subject: [PATCH] Remove mentions of Yesod from the core package. --- serversession/src/Web/ServerSession/Core/Internal.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/serversession/src/Web/ServerSession/Core/Internal.hs b/serversession/src/Web/ServerSession/Core/Internal.hs index 8c4d9c2..3ae6ad4 100644 --- a/serversession/src/Web/ServerSession/Core/Internal.hs +++ b/serversession/src/Web/ServerSession/Core/Internal.hs @@ -302,15 +302,15 @@ toSessionMap state Session {..} = -- | The session key used to signal that the session ID should be -- invalidated. forceInvalidateKey :: Text -forceInvalidateKey = "yesod-persistent-session-force-invalidate" +forceInvalidateKey = "serversession-force-invalidate" -- | Which session IDs should be invalidated. data ForceInvalidate = CurrentSessionId -- ^ Invalidate the current session ID. The current session - -- ID is automatically invalidated on @yesod-auth@ login and - -- logout. + -- ID is automatically invalidated on login and logout + -- (cf. 'setAuthKey'). | AllSessionIdsOfLoggedUser -- ^ Invalidate all session IDs beloging to the currently -- logged in user. Only the current session ID will be