Add time entry aggregation type “description”

This commit is contained in:
Constantin Graf
2024-09-17 16:25:24 +02:00
committed by Constantin Graf
parent d4e71e7c2c
commit 5e4270e3f5
3 changed files with 95 additions and 8 deletions

View File

@@ -270,6 +270,8 @@ class TimeEntryAggregationService
return 'client_id';
} elseif ($group === TimeEntryAggregationType::Billable) {
return 'billable';
} elseif ($group === TimeEntryAggregationType::Description) {
return 'description';
}
}