15 lines
296 B
Go
15 lines
296 B
Go
package auth
|
|
|
|
import (
|
|
"net/http"
|
|
"maxwarden/constants"
|
|
"maxwarden/middleware"
|
|
)
|
|
|
|
func LogoutHandler(w http.ResponseWriter, r *http.Request) {
|
|
middleware.DeleteIdentityCookie(w, r)
|
|
middleware.DeleteSessionCookie(w, r)
|
|
|
|
http.Redirect(w, r, constants.IDENTITY_LOGIN_PATH, http.StatusFound)
|
|
}
|