diff options
Diffstat (limited to 'src/data/things/album.js')
-rw-r--r-- | src/data/things/album.js | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/data/things/album.js b/src/data/things/album.js index 5f1788f8..6bf683c5 100644 --- a/src/data/things/album.js +++ b/src/data/things/album.js @@ -348,7 +348,12 @@ export class Album extends Thing { static [Thing.findSpecs] = { album: { - referenceTypes: ['album', 'album-commentary', 'album-gallery'], + referenceTypes: [ + 'album', + 'album-commentary', + 'album-gallery', + ], + bindTo: 'albumData', getMatchableNames: album => @@ -358,7 +363,12 @@ export class Album extends Thing { }, albumWithArtwork: { - referenceTypes: ['album'], + referenceTypes: [ + 'album', + 'album-referencing-artworks', + 'album-referenced-artworks', + ], + bindTo: 'albumData', include: album => |