From: Colin Powell Date: Tue, 10 May 2011 14:48:10 +0000 (-0400) Subject: Added a default manager back in to note class. X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=cf6c38d9228079d5e14adda19d9dae317703d5cf;p=django-notes.git Added a default manager back in to note class. --- diff --git a/notes/models.py b/notes/models.py index 0b40a20..502676f 100644 --- a/notes/models.py +++ b/notes/models.py @@ -38,6 +38,7 @@ class Note(MarkupMixin, TimeStampedModel): content_object = generic.GenericForeignKey("content_type", "object_id") public_objects = PublicManager() + objects = models.Manager() class Meta: verbose_name=_('Note')