build: Add generated problems report and modify shopping list entity.

This commit is contained in:
Van Leemput Dayron
2025-12-08 21:35:47 +01:00
parent 378d6fb5d5
commit 7b97f9a4b3
2 changed files with 664 additions and 1 deletions

View File

@@ -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()