Block a user
Add status page
Experimenting with new stations table.
CREATE TABLE "stations" (
"id" INTEGER NOT NULL UNIQUE,
"from" TEXT,
"frames_id" INTEGER,
"last_heard_unix" INTEGER,
"count" INTEGER,
PRIM…
API query frames by created date/time
Sort, filter, and limit results at /packets
Sort /packets by newest first, by default
Sort, filter, and limit results at /packets
A lot of this work can be repurposed for #28, but I'll open a new PR for that.
Letting this branch run on the live system for a bit to see if anything breaks, then will close.
Include requested path and actual path in API
Sort, filter, and limit results at /packets
New field created_unix works. As a bonus, you can group vaguely by timestamp using a wildcard. For example, http://127.0.0.1:5001/packets?created_unix=1684029% captures values between…
API query frames by created date/time
You can also already pull limited time blocks using wildcards on created: http://127.0.0.1:5001/packets?created=2023-04% returns packets in April 2023.
See https://amiok.net/gitea/W1CDN/aprs_too…