« get me outta code hell

wallpaperParts.js « wiki-properties « composite « data « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/composite/wiki-properties/wallpaperParts.js
blob: 2304939728234fcaad65049cb2a52d9646174523 (plain)
1
2
3
4
5
6
7
8
9
import {isWallpaperPartList} from '#validators';

export default function() {
  return {
    flags: {update: true, expose: true},
    update: {validate: isWallpaperPartList},
    expose: {transform: value => value ?? []},
  };
}