We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
start_at
end_at
1 parent 840e87f commit a3b3ef9Copy full SHA for a3b3ef9
app/Http/Controllers/Api/V1/ListResults.php
@@ -43,8 +43,16 @@ public function __invoke(Request $request)
43
AllowedFilter::exact('healthy')->nullable(),
44
AllowedFilter::exact('status'),
45
AllowedFilter::exact('scheduled'),
46
- AllowedFilter::operator('created_at', FilterOperator::DYNAMIC),
47
- AllowedFilter::operator('updated_at', FilterOperator::DYNAMIC),
+ AllowedFilter::operator(
+ name: 'start_at',
48
+ internalName: 'created_at',
49
+ filterOperator: FilterOperator::DYNAMIC,
50
+ ),
51
52
+ name: 'end_at',
53
54
55
56
])
57
->allowedSorts([
58
'ping',
0 commit comments