mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
Actually delete cookie when logging out
This commit is contained in:
parent
8562c05d3b
commit
9c13472703
1 changed files with 1 additions and 0 deletions
|
@ -264,6 +264,7 @@ class Session:
|
|||
def delete_infos():
|
||||
|
||||
response.set_cookie(f"session.{Session.actionsmap_name}", "", max_age=-1)
|
||||
response.delete_cookie(f"session.{Session.actionsmap_name}")
|
||||
|
||||
|
||||
class _ActionsMapPlugin(object):
|
||||
|
|
Loading…
Reference in a new issue