Compare commits
No commits in common. "fba68b5d03d5cf54b1b70406b2bf5441d292c122" and "0d777d214ccb2c29727114fa39e53294fed3b4bc" have entirely different histories.
fba68b5d03
...
0d777d214c
2 changed files with 284 additions and 287 deletions
|
@ -42,7 +42,6 @@ class TrackerController extends Controller
|
|||
$fromCheckin = $request->input('from', null);
|
||||
$toCheckin = $request->input('to', null);
|
||||
$forceDownload = $request->input('force', false);
|
||||
$cherryPickedCheckins = explode(',', $request->input('cherrypick', null));
|
||||
|
||||
try {
|
||||
$tripData = $this->get_trip_data($tripId, $forceDownload);
|
||||
|
@ -74,15 +73,6 @@ class TrackerController extends Controller
|
|||
);
|
||||
}
|
||||
|
||||
if ($cherryPickedCheckins) {
|
||||
$tripData->checkins = array_filter(
|
||||
$tripData->checkins,
|
||||
function ($checkin) use ($cherryPickedCheckins) {
|
||||
return in_array($checkin->id, $cherryPickedCheckins);
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
return view(
|
||||
'tracker',
|
||||
[
|
||||
|
|
561
composer.lock
generated
561
composer.lock
generated
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue