We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57e300e commit 295a465Copy full SHA for 295a465
runtime/chalicelib/route/template_manager.py
@@ -7,8 +7,8 @@
7
8
9
@template_manager_api.route("/", methods=["GET"])
10
-def list_template_manager_services() -> dict[str, list[str]]:
11
- return {"template_managers": [k for k, v in template_manager.template_managers.items() if v.initialized]}
+def list_template_manager_services() -> list[dict[str, str]]:
+ return [{"name": k} for k, v in template_manager.template_managers.items() if v.initialized]
12
13
14
@template_manager_api.route("/{service_name}", methods=["GET"])
0 commit comments