diff options
Diffstat (limited to 'src/content/dependencies/listTracksWithMusicVideos.js')
| -rw-r--r-- | src/content/dependencies/listTracksWithMusicVideos.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/content/dependencies/listTracksWithMusicVideos.js b/src/content/dependencies/listTracksWithMusicVideos.js new file mode 100644 index 00000000..e7aa1f5e --- /dev/null +++ b/src/content/dependencies/listTracksWithMusicVideos.js @@ -0,0 +1,9 @@ +export default { + relations: (relation, spec) => + ({page: relation('listTracksWithExtra', spec, 'musicVideos', 'array')}), + + generate: (relations) => + relations.page.slots({ + showAlbumDates: false, + }), +}; |