1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00

Remove history as an available include

This commit is contained in:
David Bomba 2021-08-22 16:48:41 +10:00
parent 94aaa198a3
commit c0158b8db6
4 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@ class CreditTransformer extends EntityTransformer
protected $availableIncludes = [
'invitations',
'history',
// 'history',
// 'client',
'documents',
'activities',

View File

@ -32,7 +32,7 @@ class InvoiceTransformer extends EntityTransformer
protected $availableIncludes = [
// 'invitations',
'history',
// 'history',
'payments',
'client',
'activities',

View File

@ -31,7 +31,7 @@ class QuoteTransformer extends EntityTransformer
protected $availableIncludes = [
'invitations',
'documents',
'history',
// 'history',
'activities',
// 'payments',
// 'client',

View File

@ -34,7 +34,7 @@ class RecurringInvoiceTransformer extends EntityTransformer
'invitations',
'documents',
'activities',
'history',
// 'history',
// 'client',
];