Add HTML5 object UI context
CI / python (push) Has been cancelled
CI / rust (push) Has been cancelled

This commit is contained in:
2026-05-17 00:07:30 +03:00
parent a8baa2aa49
commit 1da745c52e
3 changed files with 44 additions and 2 deletions
+2 -1
View File
@@ -1746,8 +1746,9 @@ async def html5_project_object_context(project_id: str, object_name: str) -> Res
schema = await get_object_schema(project_id, object_name)
impact = await get_object_impact(project_id, object_name)
access = await get_object_access(project_id, object_name)
ui = await get_object_ui(project_id, object_name)
return Response(
render_html5_object_context(project_id, schema, impact, access),
render_html5_object_context(project_id, schema, impact, access, ui),
media_type="text/html; charset=utf-8",
)