« get me outta code hell
1 2 3 4 5 6 7 8 9 10 11 12
export default { contentDependencies: ['linkThing', 'linkTrack'], relations: (relation, album) => ({ link: (album.style === 'single' ? relation('linkTrack', album.tracks[0]) : relation('linkThing', 'localized.album', album)), }), generate: (relations) => relations.link, };