blob: e7aa1f5ec04cc60405d4d1c93345f93d9610e7f0 (
plain)
1
2
3
4
5
6
7
8
9
|
export default {
relations: (relation, spec) =>
({page: relation('listTracksWithExtra', spec, 'musicVideos', 'array')}),
generate: (relations) =>
relations.page.slots({
showAlbumDates: false,
}),
};
|