Deprecate task fields

This commit is contained in:
David Bomba 2021-01-15 22:01:44 +11:00
parent 1b551796c5
commit 2b77951ea0
2 changed files with 2 additions and 2 deletions

View File

@ -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 ");

View File

@ -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 ?: '',