Added ccategory to calendar response

This commit is contained in:
Luca Haid
2025-09-01 09:07:32 +00:00
parent b887830988
commit da2ae9d460

View File

@@ -743,7 +743,8 @@ class WarehouseShippingNoteController extends TTCrud {
return [
'date' => date('Y-m-d H:i:s', strtotime($eventStart)),
'location' => $event['location']['location'] ?? '',
'category' => $event['category']['category'] ?? ''
'category' => $event['category']['category'] ?? '',
'ccategory' => $event['ccategory']['ccategory'] ?? '',
];
}, $limitedEvents);