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