Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When
get_lot_as_json
without recursive, return "owner"
To distinguish between a lot's personal owner and those who own the lot through inheritance, the `get_lot_as_json` function will return something like ``` "owners": ["owner1", "owner2"] ``` when called with recursion, and something like ``` "owner": "owner1" ``` when called without. The distinction here is that "owner" MUST map to the lot's personal owner, whereas "owners" is a list of all owners, including the personal owner.
- Loading branch information