Added tasks custom values in transformer

This commit is contained in:
Romain Tripault 2018-04-12 13:31:49 +02:00
parent 7a5215e6a0
commit 041590d520

View File

@ -62,6 +62,8 @@ class TaskTransformer extends EntityTransformer
'is_deleted' => (bool) $task->is_deleted,
'time_log' => $task->time_log,
'is_running' => (bool) $task->is_running,
'custom_value1' => $task->custom_value1,
'custom_value2' => $task->custom_value2,
]);
}
}