SessionStore is an implementation of the sessions.SessionStore interface that stores sessions in client side cookies
| 28 | // SessionStore is an implementation of the sessions.SessionStore |
| 29 | // interface that stores sessions in client side cookies |
| 30 | type SessionStore struct { |
| 31 | Cookie *options.Cookie |
| 32 | CookieCipher encryption.Cipher |
| 33 | Minimal bool |
| 34 | } |
| 35 | |
| 36 | // Save takes a sessions.SessionState and stores the information from it |
| 37 | // within Cookies set on the HTTP response writer |
nothing calls this directly
no outgoing calls
no test coverage detected