feat(transport_helper): add function to query multiple journeys

could query all, but the last 40 should be fine, no?
could raise to no limit, but should be done as generator for that
This commit is contained in:
fbachus
2026-07-30 15:11:04 +02:00
parent c313a94a10
commit aa9258e3af
2 changed files with 24 additions and 2 deletions
+1 -1
View File
@@ -517,7 +517,7 @@ class _JourneyOverviewPageState extends State<JourneyOverviewPage> {
initState() async {
super.initState();
// TODO: implement batch query to get a list (all) of journeys
//allJourneys = await Journey.dbGetAll();
allJourneys = await Journey.dbGetAll();
}
@override