Files
DiceCloud/app/imports/api/properties/Folders.js

14 lines
352 B
JavaScript

import SimpleSchema from 'simpl-schema';
import STORAGE_LIMITS from '/imports/constants/STORAGE_LIMITS.js';
// Folders organize a character sheet into a tree, particularly to group things
// like 'race' and 'background'
let FolderSchema = new SimpleSchema({
name: {
type: String,
max: STORAGE_LIMITS.name,
},
});
export { FolderSchema };