Added user id to account transformer

This commit is contained in:
David Bomba 2015-11-11 10:37:16 +11:00
parent ec8389f320
commit 380872db56

View File

@ -51,7 +51,8 @@ class AccountTransformer extends TransformerAbstract
'language_id' => (int) $account->language_id, 'language_id' => (int) $account->language_id,
'fill_products' => (bool) $account->fill_products, 'fill_products' => (bool) $account->fill_products,
'update_products' => (bool) $account->update_products, 'update_products' => (bool) $account->update_products,
'vat_number' => $account->vat_number 'vat_number' => $account->vat_number,
'user_id' => $account->user_id
]; ];
} }
} }