Skip to content

Commit 8cbf75e

Browse files
fix: use template ID
1 parent 0c506ad commit 8cbf75e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

services/web/server/src/simcore_service_webserver/functions/_controller/_functions_rest.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ async def list_functions(request: web.Request) -> web.Response:
132132
"thumbnail": (
133133
f"{project.thumbnail}" if project.thumbnail else None
134134
),
135-
"template_id": project.id,
136135
}
137136
)
138137
)
@@ -195,7 +194,6 @@ async def get_function(request: web.Request) -> web.Response:
195194
registered_function.model_dump(mode="json")
196195
| {
197196
"thumbnail": project_dict.get("thumbnail", None),
198-
"template_id": project_dict.get("id", None),
199197
}
200198
)
201199
)

0 commit comments

Comments
 (0)