Expose function governance settings through directory

This commit is contained in:
2026-07-31 19:40:16 +02:00
parent 17ab9c9c8d
commit daeaa4bcb8
@@ -84,6 +84,7 @@ def _function_ref(item: OrganizationFunction) -> OrganizationFunctionRef:
delegable=item.delegable, delegable=item.delegable,
act_in_place_allowed=item.act_in_place_allowed, act_in_place_allowed=item.act_in_place_allowed,
status=_status(item.is_active), # type: ignore[arg-type] status=_status(item.is_active), # type: ignore[arg-type]
settings=dict(item.settings),
) )
@@ -100,6 +101,7 @@ def _function_type_ref(
delegable=item.delegable, delegable=item.delegable,
act_in_place_allowed=item.act_in_place_allowed, act_in_place_allowed=item.act_in_place_allowed,
status=_status(item.is_active), # type: ignore[arg-type] status=_status(item.is_active), # type: ignore[arg-type]
settings=dict(item.settings),
) )