Fix map layout jump, CRM/edit distributeurs, progress overlay.
Stable map grid, no fitBounds on world view, entity PATCH edit form, CRM buttons on distributors, and loading animation for sync/wait states.
This commit is contained in:
@@ -86,6 +86,13 @@ async def api_entities(
|
||||
return await _proxy("GET", "/entities", params=params)
|
||||
|
||||
|
||||
|
||||
|
||||
@router.patch("/api/export-intel/entities/{entity_id}")
|
||||
async def api_update_entity(entity_id: int, request: Request):
|
||||
body = await request.json()
|
||||
return await _proxy("PATCH", f"/entities/{entity_id}", json=body)
|
||||
|
||||
@router.get("/api/export-intel/entities/{entity_id}")
|
||||
async def api_entity(entity_id: int):
|
||||
return await _proxy("GET", f"/entities/{entity_id}")
|
||||
|
||||
Reference in New Issue
Block a user