Skip to content
Snippets Groups Projects
Commit 49871aef886b authored by Sylvain Thénault's avatar Sylvain Thénault
Browse files

oops, should keep interfaces implemented by AnyEntity

parent 99e3f9c4f822
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,8 @@
"""customized class for BlogEntry entities"""
id = 'BlogEntry'
fetch_attrs, fetch_order = fetch_config(['creation_date', 'title'], order='DESC')
__implements__ = (ICalendarViews, ICalendarable, ISiocItem)
__implements__ = AnyEntity.__implements__ + (
ICalendarViews, ICalendarable, ISiocItem)
def dc_title(self):
return self.title
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment