RemoveAuthCookie deletes the authentication cookie.
(w http.ResponseWriter, r *http.Request)
| 93 | |
| 94 | // RemoveAuthCookie deletes the authentication cookie. |
| 95 | func (s *Session) RemoveAuthCookie(w http.ResponseWriter, r *http.Request) { |
| 96 | s.authCookie().Remove(w, r) |
| 97 | } |
| 98 | |
| 99 | type userSessionKeyType struct{} |
| 100 |
no test coverage detected