MVP #141

Merged
flixcoo merged 705 commits from development into main 2026-01-09 12:55:50 +00:00
Showing only changes of commit e42064da2c - Show all commits

View File

@@ -17,7 +17,7 @@ extension Group on AppDatabase {
}
Future<void> deleteGroup(String id) async {
await (delete(group)..where((u) => u.id.equals(id))).go();
await (delete(group)..where((g) => g.id.equals(id))).go();
}
Future<void> updateGroupname(String id, String newName) async {