updated docs

This commit is contained in:
2025-01-22 21:46:11 +03:00
parent 87e5f5ab06
commit 1ba2694a9d
50 changed files with 3342 additions and 401 deletions

View File

@@ -71,7 +71,10 @@ async def authentication_select_company_or_occupant_type(
if data.is_employee:
return {"selected_company": data.company_uu_id, "completed": True}
elif data.is_occupant:
return {"selected_occupant": data.build_living_space_uu_id, "completed": True}
return {
"selected_occupant": data.build_living_space_uu_id,
"completed": True,
}
return {"completed": False, "selected_company": None, "selected_occupant": None}