From 1357aa2a0e3d5eb3e195bfbb9340c24b8f3bd67b Mon Sep 17 00:00:00 2001 From: avollkopf <43980694+avollkopf@users.noreply.github.com> Date: Sun, 2 Apr 2023 18:27:15 +0200 Subject: [PATCH] fix in http_plugin endpoint --- cbpi/http_endpoints/http_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cbpi/http_endpoints/http_plugin.py b/cbpi/http_endpoints/http_plugin.py index 9a36beb..27b5149 100644 --- a/cbpi/http_endpoints/http_plugin.py +++ b/cbpi/http_endpoints/http_plugin.py @@ -88,7 +88,7 @@ class PluginHttpEndpoints: return web.json_response(plugin_list, dumps=json_dumps) @request_mapping(path="/names", method="GET", auth_required=False) - async def list(self, request): + async def names(self, request): """ --- description: Get a list of avialable plugin names