Include uuid in fields returned by /customers API

This commit is contained in:
Lance Edgar 2019-08-24 19:16:41 -05:00
parent 5cfe69d24b
commit 9081985b08

View file

@ -40,6 +40,7 @@ class CustomerView(APIMasterView):
def normalize(self, customer): def normalize(self, customer):
return { return {
'uuid': customer.uuid,
'id': customer.id, 'id': customer.id,
'name': customer.name, 'name': customer.name,
} }