mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-09 16:52:17 +01:00
Added filled gaps to time entry aggregation; Moved aggregation to service
This commit is contained in:
13
app/Enums/TimeEntryAggregationTypeInterval.php
Normal file
13
app/Enums/TimeEntryAggregationTypeInterval.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum TimeEntryAggregationTypeInterval: string
|
||||
{
|
||||
case Day = 'day';
|
||||
case Week = 'week';
|
||||
case Month = 'month';
|
||||
case Year = 'year';
|
||||
}
|
||||
Reference in New Issue
Block a user