From: Brett Parker Date: Tue, 12 Jun 2012 15:26:54 +0000 (+0100) Subject: Allow logged in users to comment on blog entries by passing moderation X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/commitdiff_plain/6f8143cfb9188e2e6c1869a74dd6df9a66460fd4 Allow logged in users to comment on blog entries by passing moderation --- diff --git a/sommitrealweird/blog/models.py b/sommitrealweird/blog/models.py index c98407d..f76de30 100644 --- a/sommitrealweird/blog/models.py +++ b/sommitrealweird/blog/models.py @@ -33,7 +33,10 @@ class BlogEntryCommentModerator(CommentModerator): email_notification = True def moderate(self, comment, content_object, request): - return True + if request.user.is_authenticated(): + return False + else: + return True moderator.register(BlogEntry, BlogEntryCommentModerator)