1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00

Merge remote-tracking branch 'upstream/v2' into v2-repeating-header-and-footer

This commit is contained in:
Benjamin Beganović 2020-08-26 07:53:45 +02:00
commit bba9d7dc44
2 changed files with 2 additions and 1 deletions

View File

@ -44,6 +44,7 @@ class CompanyGateway extends BaseModel
'custom_value3',
'custom_value4',
'token_billing',
'label',
];
public static $credit_cards = [

View File

@ -31,7 +31,7 @@ class SystemLogTransformer extends EntityTransformer
'event_id' => (int) $system_log->event_id,
'category_id' => (int) $system_log->category_id,
'type_id' => (int) $system_log->type_id,
'log' => (string) $system_log->log,
'log' => json_encode($system_log->log),
'updated_at' => (int)$system_log->updated_at,
'created_at' => (int)$system_log->created_at,
];