app/soc/logic/models/role.py
changeset 2672 7bc9d3b962af
parent 2664 06d4f4d06f64
child 2676 a7fabd1534f8
--- a/app/soc/logic/models/role.py	Fri Jul 24 15:23:45 2009 +0200
+++ b/app/soc/logic/models/role.py	Fri Jul 24 19:59:26 2009 +0200
@@ -139,4 +139,15 @@
     # resignation is possible
     return None
 
+  def getRoleLogicsToNotifyUponeNewRequest(self):
+    """Returns a list with subclasses of Role Logic which should be notified
+    when a new request to obtain this Role arrives.
+
+    Returns:
+      A list with all Role Logics to notify
+    """
+
+    return []
+
+
 logic = Logic()