chore!: remove activity feed logs

This commit is contained in:
Ankush Menat 2022-12-12 14:28:30 +05:30
parent b93022a54e
commit 2ba85af8a3
3 changed files with 0 additions and 9 deletions

View file

@ -86,9 +86,6 @@ form_grid_templates = {"fields": "templates/form_grid/fields.html"}
class DocType(Document):
def get_feed(self):
return self.name
def validate(self):
"""Validate DocType before saving.

View file

@ -33,9 +33,6 @@ class BlogPost(WebsiteGenerator):
+ self.scrub(self.title)
)
def get_feed(self):
return self.title
def validate(self):
super().validate()

View file

@ -30,9 +30,6 @@ class WebPage(WebsiteGenerator):
if not self.dynamic_route:
self.route = quoted(self.route)
def get_feed(self):
return self.title
def on_update(self):
super().on_update()