Added Character sheet

This commit is contained in:
Stefan Zermatten
2018-12-21 12:17:49 +02:00
parent e0195499e5
commit 76da2c8393
11 changed files with 159 additions and 96 deletions

View File

@@ -1,6 +1,6 @@
import SimpleSchema from "simpl-schema";
let Bundle = new Mongo.Collection("bundle");
let Bundles = new Mongo.Collection("bundle");
let attributeSchema = new SimpleSchema({
name: String,

View File

@@ -24,3 +24,5 @@ let experienceSchema = new SimpleSchema({
Experiences.attachSchema(experienceSchema);
//Experiences.attachBehaviour("softRemovable");
export default Experiences;

View File

@@ -34,3 +34,5 @@ Proficiencies.attachSchema(proficiencySchema);
// Proficiencies.attachBehaviour("softRemovable");
makeChild(Proficiencies, ["enabled"]);
export default Proficiencies;