Skip to content
Snippets Groups Projects
hooks.py 440 B
Newer Older
sylvain thenault's avatar
sylvain thenault committed
from cubicweb.selectors import implements
sylvain thenault's avatar
sylvain thenault committed
from cubicweb.sobjects.notification import ContentAddedView
sylvain thenault's avatar
sylvain thenault committed
class BlogEntryAddedView(ContentAddedView):
Nicolas Chauvat's avatar
Nicolas Chauvat committed
    """get notified from new blogs"""
sylvain thenault's avatar
sylvain thenault committed
    __select__ = implements('BlogEntry',)
Nicolas Chauvat's avatar
Nicolas Chauvat committed
    content_attr = 'content'
Arthur Lutz's avatar
Arthur Lutz committed
        entity = self.cw_rset.get_entity(0, 0)
        return '[%s] %s' % (self._cw.vreg.config.appid, entity.dc_title())