« get me outta code hell

generateArtistInfoPageAlbumArtistOnlyChunkItem.js « dependencies « content « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/content/dependencies/generateArtistInfoPageAlbumArtistOnlyChunkItem.js
blob: 314813f51e347f5c8c2977f82258b31ab1a6b584 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export default {
  relations: (relation) => ({
    template:
      relation('generateArtistInfoPageChunkItem'),
  }),

  generate: (relations, {language}) =>
    relations.template.slots({
      content:
        language.$('artistPage.creditList.entry.album.albumArtistOnly'),
    }),
};