Completed the stats tab, conditions not added yet

This commit is contained in:
Stefan Zermatten
2019-01-21 16:03:05 +02:00
parent e43718f034
commit 60dfba3b46
13 changed files with 310 additions and 49 deletions

View File

@@ -71,15 +71,11 @@ let skillSchema = new SimpleSchema({
type: SimpleSchema.Integer,
optional: true,
},
enabled: {
type: Boolean,
defaultValue: true,
},
});
Skills.attachSchema(skillSchema);
//Skills.attachBehaviour("softRemovable");
makeChild(Skills, ["enabled"]); //children of lots of things
makeChild(Skills); //children of lots of things
export default Skills;