Redirect to / after logout so you aren't automatically logged back in
This commit is contained in:
parent
fd620bd5e8
commit
87be45063f
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ func GetLogin(c *gin.Context) {
|
|||
func GetLogout(c *gin.Context) {
|
||||
httputil.DelCookie(c.Writer, c.Request, "user_sess")
|
||||
httputil.DelCookie(c.Writer, c.Request, "user_last")
|
||||
c.Redirect(303, "/login")
|
||||
c.Redirect(303, "/")
|
||||
}
|
||||
|
||||
func GetLoginToken(c *gin.Context) {
|
||||
|
|
Loading…
Reference in a new issue