diff -r 2eaacbbdb168 -r 7bc9d3b962af app/soc/logic/models/role.py --- 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()