# HG changeset patch # User Ralph Meijer # Date 1099256792 0 # Node ID 788114f9b5bce77151bcd4ba166d03a951c1e5be # Parent c9ddca3cce20fd2d41728ff2478e0663b36d81b7 Added get_supported_affiliations() to BackendService. diff -r c9ddca3cce20 -r 788114f9b5bc idavoll/backend.py --- a/idavoll/backend.py Sun Oct 31 16:03:50 2004 +0000 +++ b/idavoll/backend.py Sun Oct 31 21:06:32 2004 +0000 @@ -144,6 +144,9 @@ service.MultiService.__init__(self) utility.EventDispatcher.__init__(self) + def get_supported_affiliations(self): + return ['none', 'owner', 'outcast', 'publisher'] + class NotificationService(service.Service): def register_notifier(self, observerfn, *args, **kwargs):