mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
Deprecate task fields
This commit is contained in:
parent
1b551796c5
commit
2b77951ea0
@ -52,7 +52,7 @@ class PostUpdate extends Command
|
||||
|
||||
nlog("finished migrating");
|
||||
|
||||
exec('vendor/bin/composer install --no-dev:');
|
||||
exec('vendor/bin/composer install --no-dev');
|
||||
|
||||
nlog("finished running composer install ");
|
||||
|
||||
|
@ -59,7 +59,7 @@ class TaskTransformer extends EntityTransformer
|
||||
'project_id' => $this->encodePrimaryKey($task->project_id) ?: '',
|
||||
'is_deleted' => (bool) $task->is_deleted,
|
||||
'time_log' => $task->time_log ?: '',
|
||||
'is_running' => (bool) $task->is_running,
|
||||
'is_running' => (bool) $task->is_running, //@deprecate
|
||||
'custom_value1' => $task->custom_value1 ?: '',
|
||||
'custom_value2' => $task->custom_value2 ?: '',
|
||||
'custom_value3' => $task->custom_value3 ?: '',
|
||||
|
Loading…
x
Reference in New Issue
Block a user