summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--qvisqve/management_router.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qvisqve/management_router.py b/qvisqve/management_router.py
index 7ae04b0..6095d41 100644
--- a/qvisqve/management_router.py
+++ b/qvisqve/management_router.py
@@ -95,8 +95,8 @@ class ManagementEndpoint:
def _list(self, content_type, body, **kwargs):
qvisqve.log.log('info', msg_text='Listing', path=self._path)
- # FIXME
- return qvisqve.ok_response({"resources": []})
+ entity_ids = list(self._entities.list())
+ return qvisqve.ok_response({"resources": entity_ids})
def _show(self, content_type, body, **kwargs):
qvisqve.log.log('info', msg_text='Showing client')