add endless scrolling to time overview page

This commit is contained in:
Gregor Vostrak
2024-03-27 14:59:22 +01:00
parent 57ff657199
commit a8b81fe298
3 changed files with 84 additions and 4 deletions

View File

@@ -51,7 +51,7 @@ class TimeEntryIndexRequest extends FormRequest
'string',
'in:true,false',
],
// Limit the number of returned time entries
// Limit the number of returned time entries (default: 150)
'limit' => [
'integer',
'min:1',
@@ -59,7 +59,8 @@ class TimeEntryIndexRequest extends FormRequest
],
// Filter makes sure that only time entries of a whole date are returned
'only_full_dates' => [
'boolean',
'string',
'in:true,false',
],
];
}