blob: ab519fd6adb9f57283b28442cf9632c0f3ecaa7d (
plain)
1
2
3
4
5
6
7
8
|
export default {
contentDependencies: ['linkThing'],
relations: (relation, album) =>
({link: relation('linkThing', 'localized.albumCommentary', album)}),
generate: (relations) => relations.link,
};
|