diff options
author | luxagraf <sng@luxagraf.net> | 2017-10-14 11:36:20 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2017-10-14 11:36:20 -0500 |
commit | bd1adb4927695ed0ce3ac94d90c68bd61e440275 (patch) | |
tree | f014fa16a64eb55e62ecb92c62a4e8186cd318a4 /app/lib/django_comments_old/signals.py | |
parent | cbadfff80be33b4ec67da57585451884c6378380 (diff) |
updated comments app and added caption to photo list view
Diffstat (limited to 'app/lib/django_comments_old/signals.py')
-rw-r--r-- | app/lib/django_comments_old/signals.py | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/app/lib/django_comments_old/signals.py b/app/lib/django_comments_old/signals.py deleted file mode 100644 index 079afaf..0000000 --- a/app/lib/django_comments_old/signals.py +++ /dev/null @@ -1,21 +0,0 @@ -""" -Signals relating to comments. -""" -from django.dispatch import Signal - -# Sent just before a comment will be posted (after it's been approved and -# moderated; 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 400 response. This signal is sent at more or less -# the same time (just before, actually) as the Comment object's pre-save signal, -# except that the HTTP request is sent along with this signal. -comment_will_be_posted = Signal(providing_args=["comment", "request"]) - -# Sent just after a comment was posted. See above for how this differs -# from the Comment object's post-save signal. -comment_was_posted = Signal(providing_args=["comment", "request"]) - -# Sent after a comment was "flagged" in some way. Check the flag to see if this -# was a user requesting removal of a comment, a moderator approving/removing a -# comment, or some other custom user flag. -comment_was_flagged = Signal(providing_args=["comment", "flag", "created", "request"]) |