API: Functionality for handling multi-packets #1
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently I've only been considering the case of non-repeated packets. Consider how to interface with indexed packets. This may require modifying the database structure (adding a nullable index column) or by adjusting the query logic (to support checking against certain indexes).
API: functionality for handling multi-packetsto Functionality for handling multi-packetsFunctionality for handling multi-packetsto API: Functionality for handling multi-packetsClosed with
c9b73ee006
. I added a migration that alters thebus_events
table to add a virtual column that pulls theidx
key from the JSON. The BusEventsFilter struct has also been modified to accept an array of indexes, but this can result in funky queries if there's i.e multiple names and multiple indexes. That's not a supported usecase so we won't worry about it.