Add /people API endpoint; allow for "native sort"

This commit is contained in:
Lance Edgar 2021-09-03 16:26:15 -05:00
parent d671b18215
commit fa700d53ad
3 changed files with 61 additions and 0 deletions
tailbone/api

View file

@ -46,6 +46,7 @@ class CustomerView(APIMasterView):
'uuid': customer.uuid,
'_str': six.text_type(customer),
'id': customer.id,
'number': customer.number,
'name': customer.name,
}