mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
comment_will_be_sent can cause a 400, not a 403
Doc cleanup for django.contrib.comments.signals.comment_will_be_sent If a receiver returns False, an HttpResponse with status code 400 is returned. A test case already exists confirming this behavior. Updated docs to reflect reality.
This commit is contained in:
parent
ff0d3126af
commit
d8ee46afff
2 changed files with 3 additions and 3 deletions
|
@ -20,8 +20,8 @@ Sent just before a comment will be saved, after it's been sanity checked and
|
|||
submitted. This can be used to modify the comment (in place) with posting
|
||||
details or other such actions.
|
||||
|
||||
If any receiver returns ``False`` the comment will be discarded and a 403 (not
|
||||
allowed) response will be returned.
|
||||
If any receiver returns ``False`` the comment will be discarded and a 400
|
||||
response will be returned.
|
||||
|
||||
This signal is sent at more or less the same time (just before, actually) as the
|
||||
``Comment`` object's :data:`~django.db.models.signals.pre_save` signal.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue