Files
DiceCloud/rpg-docs/Model/Character/Notes.js
2015-02-19 10:45:57 +00:00

11 lines
334 B
JavaScript

Notes = new Meteor.Collection("notes");
Schemas.Note = new SimpleSchema({
charId: {type: String, regEx: SimpleSchema.RegEx.Id},
name: {type: String},
description: {type: String, optional: true},
color: {type: String, allowedValues: _.pluck(colorOptions, "key"), defaultValue: "q"}
});
Notes.attachSchema(Schemas.Note);