X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/64484656099dfff360742f3a2c1e4d07bc1f6bd8..29f2eef0ba05968f84c3afad30e1fa105fc56ed3:/sommitrealweird/blog/models.py?ds=inline diff --git a/sommitrealweird/blog/models.py b/sommitrealweird/blog/models.py index c98407d..9548a32 100644 --- a/sommitrealweird/blog/models.py +++ b/sommitrealweird/blog/models.py @@ -1,4 +1,3 @@ -from django.contrib.comments.moderation import CommentModerator, moderator from django.db import models from django.conf import settings from django.contrib import admin @@ -10,7 +9,7 @@ FORMAT_CHOICES = ( class BlogEntry(models.Model): title = models.CharField(max_length=150) - islive = models.BooleanField() + islive = models.BooleanField(default=False) sections = models.ManyToManyField('BlogSection') format = models.CharField(max_length=10, choices=FORMAT_CHOICES) slug = models.SlugField() @@ -29,14 +28,6 @@ class BlogEntry(models.Model): class Meta: ordering = ['-publish_date'] -class BlogEntryCommentModerator(CommentModerator): - email_notification = True - - def moderate(self, comment, content_object, request): - return True - -moderator.register(BlogEntry, BlogEntryCommentModerator) - class BlogSection(models.Model): title = models.CharField(max_length=150) slug = models.SlugField()