* tsp-info endpoint added
* different collector services are now implemented
This commit is contained in:
@@ -234,6 +234,9 @@ class KanbanBoard implements \JsonSerializable
|
||||
*/
|
||||
private function updatedAtReverseSort(array $toSort): array
|
||||
{
|
||||
$toSort = array_filter($toSort, function(KanbanEntry $item){
|
||||
return $item->getAssignee() != null;
|
||||
});
|
||||
usort($toSort, function(KanbanEntry $a, KanbanEntry $b){
|
||||
return $b->getUpdatedAt() <=> $a->getUpdatedAt();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user