#684 closed defect (fixed)
[patch] Give views/decorators/auth.py a fighting chance of accomplishing something
Reported by: | rjwittams | Owned by: | Adrian Holovaty |
---|---|---|---|
Component: | contrib.admin | Version: | |
Severity: | normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
auth.py is broken. user_passes_test is not a decorator, login_required throws away its view function and calls user_passes_test with only one argument.
This patch restores a vague semblance of correctness to the code..
Attachments (1)
Change History (4)
comment:1 by , 19 years ago
Summary: | [patch] Give auth-decorators.py a fighting chance of accomplishing something → [patch] Give views/decorators/auth.py a fighting chance of accomplishing something |
---|
comment:2 by , 19 years ago
Description: | modified (diff) |
---|
by , 19 years ago
Attachment: | django-auth-decorators.patch added |
---|
comment:3 by , 19 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [1004]) Fixed #684 -- Fixed login_required and user_passes_test decorators. Thanks, rjwittams