diff --git a/djangocms_blog/models.py b/djangocms_blog/models.py index 1ee040f6..24cad4fc 100644 --- a/djangocms_blog/models.py +++ b/djangocms_blog/models.py @@ -578,6 +578,13 @@ class Meta: objects = GenericDateTaggedManager() admin_manager = AdminDateTaggedManager() + @property + def in_navigation(self): + # TODO: This is a workaround as the CMS expects such an attribute, but I have no idea + # under what conditions it has to be set to True or False. Maybe the MENU_TYPE of the + # Blog AppConfig? + return True + @property def author(self): return self.post.author