« get me outta code hell

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

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

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

export class ReferencingSourcesEntry extends ContentEntry {
  static [Thing.wikiData] = 'referencingSourceData';

  static [Thing.getPropertyDescriptors] = () => ({
    // Expose only

    isReferencingSourceEntry: exposeConstant(V(true)),
  });
}