Add ZIP download endpoint

This commit is contained in:
Markus Unterwaditzer
2025-06-18 23:31:31 +02:00
committed by Will Greenberg
parent 29823d3e82
commit b2502847a1
9 changed files with 270 additions and 35 deletions

View File

@@ -19,6 +19,7 @@
<th class='p-2' scope="col">Size</th>
<th class='p-2' scope="col">PCAP</th>
<th class='p-2' scope="col">QMDL</th>
<th class='p-2' scope="col">ZIP</th>
<th class='p-2' scope="col">Analysis</th>
<th class='p-2' scope="col"></th>
</tr>
@@ -32,6 +33,6 @@
<!--For smaller screens we use cards-->
<div class="lg:hidden flex flex-col gap-4">
{#each entries as entry, i}
<Card {entry} current={false} {i} />
<Card {entry} current={false} {i} {server_is_recording} />
{/each}
</div>