This commit is contained in:
2025-12-08 16:18:57 +03:30
parent ec10ab2d4a
commit 060570f847
@@ -52,7 +52,7 @@ export class ReviewRepository extends EntityRepository<Review> {
limit,
offset,
orderBy: { [orderBy]: order.toLowerCase() as 'asc' | 'desc' },
populate: ['food'],
populate: ['food','user'],
});
const totalPages = Math.ceil(total / limit);