mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-30 10:11:23 +02:00
Merge pull request #1854 from marcusramberg/fix_logout_redirect
Redirect to / after logout so you aren't automatically logged back in.
This commit is contained in:
commit
cdb9cd915e
@ -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 New Issue
Block a user