]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/models/node.py
make RSS items decoratable, add an option to block email notifications per node,...
[osqa.git] / forum / models / node.py
index 83b9ab72b3096d9ca867b8dbe168b538b0bdb006..387f8870b8525df3aca59e1b7319f0ff10b36ee9 100644 (file)
@@ -330,6 +330,14 @@ class Node(BaseModel, NodeContent):
 
         return content
 
+    # Can be used to block subscription notifications for a specific node from a module
+    def _is_notifiable(self):
+        return True
+
+    @property
+    def is_notifiable(self):
+        return self._is_notifiable()
+
     @models.permalink
     def get_revisions_url(self):
         return ('revisions', (), {'id': self.id})