Fixing song lookup
All checks were successful
Music Collection CI Workflow / test (./backend) (push) Successful in 23s
Music Collection CI Workflow / test (./frontend) (push) Successful in 19s
Music Collection CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/msuic-collection-backend, ./backend) (push) Successful in 51s
Music Collection CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/music-collection-frontend, ./frontend) (push) Successful in 1m13s
Music Collection CI Workflow / deploy (push) Successful in 21s

This commit is contained in:
Phill Pover 2025-04-03 11:23:52 +01:00
parent cd1665fb7c
commit 80c2bbfcb9

View File

@ -15,6 +15,6 @@ export class Album {
@Column()
genre: string
@OneToMany(() => Song, (song) => song.album)
@OneToMany(() => Song, (song) => song.album, { eager: true })
songs: Song[]
}