On logout redirect to start page and clear redirect cookie (#11202)
when one user logout should clear redirect to value, otherwise switch the account will occur error. Co-authored-by: Lauris BH <lauris@nix.lv>
This commit is contained in:
		
							parent
							
								
									e008b68c9c
								
							
						
					
					
						commit
						f1f56da4d1
					
				
					 1 changed files with 1 additions and 0 deletions
				
			
		|  | @ -1001,6 +1001,7 @@ func handleSignOut(ctx *context.Context) { | |||
| 	ctx.SetCookie(setting.CookieRememberName, "", -1, setting.AppSubURL, setting.SessionConfig.Domain, setting.SessionConfig.Secure, true) | ||||
| 	ctx.SetCookie(setting.CSRFCookieName, "", -1, setting.AppSubURL, setting.SessionConfig.Domain, setting.SessionConfig.Secure, true) | ||||
| 	ctx.SetCookie("lang", "", -1, setting.AppSubURL, setting.SessionConfig.Domain, setting.SessionConfig.Secure, true) // Setting the lang cookie will trigger the middleware to reset the language ot previous state.
 | ||||
| 	ctx.SetCookie("redirect_to", "", -1, setting.AppSubURL)                                                            // logout default should set redirect to to default
 | ||||
| } | ||||
| 
 | ||||
| // SignOut sign out from login status
 | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue