« get me outta code hell

ArtworkArtistContribution.js « contrib « things « data « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/things/contrib/ArtworkArtistContribution.js
blob: 5b1b68d8c9362854082794c153f4ba8e17088fee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import {V} from '#composite';
import Thing from '#thing';

import {exposeConstant} from '#composite/control-flow';

import {Contribution} from './Contribution.js';

export class ArtworkArtistContribution extends Contribution {
  static [Thing.getPropertyDescriptors] = () => ({
    isArtworkArtistContribution: exposeConstant(V(true)),
  });
}