summaryrefslogtreecommitdiff
path: root/src/mailman/rest/webservice.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/rest/webservice.py')
-rw-r--r--src/mailman/rest/webservice.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mailman/rest/webservice.py b/src/mailman/rest/webservice.py
index d0c448572..914bf7d28 100644
--- a/src/mailman/rest/webservice.py
+++ b/src/mailman/rest/webservice.py
@@ -43,6 +43,7 @@ from mailman.config import config
from mailman.core.system import system
from mailman.interfaces.domain import IDomainCollection, IDomainManager
from mailman.interfaces.listmanager import IListManager
+from mailman.interfaces.membership import ISubscriptionService
from mailman.interfaces.rest import IResolvePathNames
from mailman.rest.publication import AdminWebServicePublication
@@ -82,6 +83,7 @@ class AdminWebServiceApplication:
system=system,
domains=getUtility(IDomainCollection),
lists=getUtility(IListManager),
+ members=getUtility(ISubscriptionService),
)
next_step = top_level.get(name)
log.debug('Top level name: %s -> %s', name, next_step)