#236 closed defect (fixed)
Add support for deleting cookies easily
Reported by: | maurycy | Owned by: | Adrian Holovaty |
---|---|---|---|
Component: | Core (Other) | Version: | |
Severity: | normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
I'm not sure, but there's no way to delete cookies. Authorization model django.models.auth.Session._module_destroy_all_sessions() doesn't care and django.utils.httpwrappers doesn't have any methods related with.
It should be obviously added.
Change History (4)
comment:1 by , 19 years ago
Component: | Admin interface → Core framework |
---|
comment:2 by , 19 years ago
Status: | new → assigned |
---|---|
Summary: | deleting cookies → Add support for deleting cookies easily |
comment:4 by , 17 years ago
This should be added to the documentation (it took me a while to find there actually is a delete_cookies command).
Right now I only found cookies stuff in the django book, nothing about cookie in the documentation at all.
Note:
See TracTickets
for help on using tickets.
It's possible to delete a cookie by setting
max_age=0
, but that's unintuitive.