From 7b97f9a4b36aa711fe232613378ed71e8c6cea2e Mon Sep 17 00:00:00 2001 From: Van Leemput Dayron Date: Mon, 8 Dec 2025 21:35:47 +0100 Subject: [PATCH] build: Add generated problems report and modify shopping list entity. --- .../reports/problems/problems-report.html | 663 ++++++++++++++++++ backend/src/entity/ShoppingList.ts | 2 +- 2 files changed, 664 insertions(+), 1 deletion(-) create mode 100644 android/build/reports/problems/problems-report.html diff --git a/android/build/reports/problems/problems-report.html b/android/build/reports/problems/problems-report.html new file mode 100644 index 0000000..57fb1aa --- /dev/null +++ b/android/build/reports/problems/problems-report.html @@ -0,0 +1,663 @@ + + + + + + + + + + + + + Gradle Configuration Cache + + + +
+ +
+ Loading... +
+ + + + + + diff --git a/backend/src/entity/ShoppingList.ts b/backend/src/entity/ShoppingList.ts index 5952da8..c95a3bc 100644 --- a/backend/src/entity/ShoppingList.ts +++ b/backend/src/entity/ShoppingList.ts @@ -13,7 +13,7 @@ export class ShoppingList { @ManyToOne(() => User, (user) => user.id) owner!: User; - @OneToMany(() => ShoppingItem, (item) => item.list) + @OneToMany(() => ShoppingItem, (item: ShoppingItem) => item.list) items!: ShoppingItem[]; @CreateDateColumn()