« get me outta code hell

data: add [Thing.friendlyName] property to some Thing subclasses - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/things/thing.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-10-18 14:25:27 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-10-18 14:25:27 -0300
commit4e2dae523e7bf8b49272bd6afcba86a8157af4a1 (patch)
tree35043e2235fb37b26d51d6d8cdfbedb7ac3e5981 /src/data/things/thing.js
parent428e14394209f55215168b9acbe680a982f9beb6 (diff)
data: add [Thing.friendlyName] property to some Thing subclasses
Diffstat (limited to 'src/data/things/thing.js')
-rw-r--r--src/data/things/thing.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/data/things/thing.js b/src/data/things/thing.js
index a47f8506..def7e914 100644
--- a/src/data/things/thing.js
+++ b/src/data/things/thing.js
@@ -9,6 +9,7 @@ import CacheableObject from './cacheable-object.js';
 
 export default class Thing extends CacheableObject {
   static referenceType = Symbol.for('Thing.referenceType');
+  static friendlyName = Symbol.for(`Thing.friendlyName`);
 
   static getPropertyDescriptors = Symbol('Thing.getPropertyDescriptors');
   static getSerializeDescriptors = Symbol('Thing.getSerializeDescriptors');