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

This commit is contained in:
2026-05-17 00:04:12 +03:00
parent f20c045de9
commit a8baa2aa49
3 changed files with 34 additions and 3 deletions
+2 -1
View File
@@ -1745,8 +1745,9 @@ async def html5_project_review(project_id: str) -> Response:
async def html5_project_object_context(project_id: str, object_name: str) -> Response:
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)
return Response(
render_html5_object_context(project_id, schema, impact),
render_html5_object_context(project_id, schema, impact, access),
media_type="text/html; charset=utf-8",
)