1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-12 14:12:44 +01:00

Add send_invoice boolean in contact transformer

This commit is contained in:
David Bomba 2016-01-29 10:08:11 +11:00
parent ebbeb5b7bf
commit 32acb8b86a

View File

@ -19,6 +19,7 @@ class ContactTransformer extends EntityTransformer
'phone' => $contact->phone,
'last_login' => $contact->last_login,
'account_key' => $this->account->account_key,
'send_invoice' => (bool) $contact->send_invoice,
];
}
}