Compare commits

..

1 commit

Author SHA1 Message Date
15ef93d000
chore: add mailmap
collapses all commits/contributions into one name.
2025-05-05 22:47:43 +02:00
2 changed files with 8 additions and 8 deletions

3
.mailmap Normal file
View file

@ -0,0 +1,3 @@
<ro@h-i.works> <iam@roiskinda.cool>
<ro@h-i.works> <are0h@ubiqueros.com>
ro <are0h@ubiqueros.com>

View file

@ -30,13 +30,10 @@ class ExportController extends Controller
} }
array_push($list, ["heatRating" => $rating, "ratingCount" => $count]); array_push($list, ["heatRating" => $rating, "ratingCount" => $count]);
} }
return view( return view('front.exports', [
'front.exports',
[
'title' => "Exports", 'title' => "Exports",
'list' => $list 'list' => $list
] ]);
);
} }
// //
@ -80,7 +77,7 @@ class ExportController extends Controller
} }
header('Content-Type: text/csv'); header('Content-Type: text/csv');
header('Content-Disposition: attachment; filename=' . $type . "-" . $percent . ".csv"); header('Content-Disposition: attachment; filename=' . $type . "-" . $percent);
echo implode(',', $columns) . PHP_EOL; echo implode(',', $columns) . PHP_EOL;
foreach ($list as $item) { foreach ($list as $item) {