lavorazione dei ticket

This commit is contained in:
2026-05-14 15:59:46 +02:00
parent 0f9616f19a
commit 89099c2cfd
11 changed files with 437 additions and 205 deletions

View File

@@ -18,10 +18,7 @@ class TrackingRepository {
.select('*, staff_member(name)')
.eq('parent_id', parentId)
.eq('parent_type', parentType.name)
.order(
'created_at',
ascending: true,
); // ascending: true per avere la timeline dall'alto (vecchi) al basso (nuovi)
.order('created_at', ascending: false);
return response.map((map) => TrackingModel.fromMap(map)).toList();
}