feat: add cherry-picking of checkins

This commit is contained in:
Ben Goldsworthy 2024-06-17 22:37:13 +02:00
parent e44bd91f10
commit 92178771ad
Signed by: Rumperuu
SSH key fingerprint: SHA256:e5XfzNOr9UvWpEzyLfw0GtTMZWIFh3NmxH+/qQIi3xE

View file

@ -42,6 +42,7 @@ class TrackerController extends Controller
$fromCheckin = $request->input('from', null);
$toCheckin = $request->input('to', null);
$forceDownload = $request->input('force', false);
$cherryPickedCheckins = $request->input('cherrypick', null);
try {
$tripData = $this->get_trip_data($tripId, $forceDownload);
@ -73,6 +74,16 @@ class TrackerController extends Controller
);
}
if ($cherryPickedCheckins) {
$explodedCherryPickedCheckins = explode(',', $cherryPickedCheckins);
$tripData->checkins = array_filter(
$tripData->checkins,
function ($checkin) use ($explodedCherryPickedCheckins) {
return in_array($checkin->id, $explodedCherryPickedCheckins);
}
);
}
return view(
'tracker',
[