events cluster updated with PageInfo

This commit is contained in:
2025-02-03 20:53:31 +03:00
parent f0613e96e8
commit b67090087a
51 changed files with 1041 additions and 286 deletions

View File

@@ -53,9 +53,7 @@ MenuEventMethods = MethodToEvent(
)
def menu_endpoint(
request: Request, data: EndpointBaseRequestModel
) -> Dict[str, Any]:
def menu_endpoint(request: Request, data: EndpointBaseRequestModel) -> Dict[str, Any]:
function = ValidationEventMethods.retrieve_event(
event_function_code=f"{menu_event.key}"
)
@@ -63,4 +61,5 @@ def menu_endpoint(
RetrieveValidation.context_retriever = ContextRetrievers(func=validations_endpoint)
return function.endpoint_callable(request=request, data=data)
MenuEventMethods.endpoint_callable = menu_endpoint