« get me outta code hell
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
export default { contentDependencies: ['linkAlbum', 'linkTrack'], relations: (relation, artwork) => ({ link: (artwork.thing.isAlbum ? relation('linkAlbum', artwork.thing) : artwork.thing.isTrack ? relation('linkTrack', artwork.thing) : null), }), generate: (relations) => relations.link, };