hooks/notification.py
changeset 3376 f5c69485381f
parent 3163 edfe43ceaa35
child 3418 7b49fa7e942d
--- a/hooks/notification.py	Wed Sep 23 08:17:52 2009 +0200
+++ b/hooks/notification.py	Wed Sep 23 08:42:52 2009 +0200
@@ -36,7 +36,7 @@
 
 class StatusChangeHook(NotificationHook):
     """notify when a workflowable entity has its state modified"""
-    __id__ = 'notifystatuschange'
+    __regid__ = 'notifystatuschange'
     __select__ = NotificationHook.__select__ & entity_implements('TrInfo')
     events = ('after_add_entity',)
 
@@ -59,7 +59,7 @@
 
 
 class RelationChangeHook(NotificationHook):
-    __id__ = 'notifyrelationchange'
+    __regid__ = 'notifyrelationchange'
     events = ('before_add_relation', 'after_add_relation',
               'before_delete_relation', 'after_delete_relation')
 
@@ -79,7 +79,7 @@
     """if a notification view is defined for the event, send notification
     email defined by the view
     """
-    __id__ = 'notifyentitychange'
+    __regid__ = 'notifyentitychange'
     events = ('after_add_entity', 'after_update_entity')
 
     def __call__(self):
@@ -93,7 +93,7 @@
 # supervising ##################################################################
 
 class SomethingChangedHook(NotificationHook):
-    __id__ = 'supervising'
+    __regid__ = 'supervising'
     events = ('before_add_relation', 'before_delete_relation',
               'after_add_entity', 'before_update_entity')
 
@@ -124,7 +124,7 @@
 
 
 class EntityDeleteHook(SomethingChangedHook):
-    __id__ = 'supervisingentitydel'
+    __regid__ = 'supervisingentitydel'
     events = ('before_delete_entity',)
 
     def _call(self):