Class levels can now have conditions

This commit is contained in:
Stefan Zermatten
2020-10-15 15:57:19 +02:00
parent 839f91c3b2
commit 1ba4f76763
3 changed files with 25 additions and 11 deletions

View File

@@ -23,6 +23,11 @@ let ClassLevelSchema = new SimpleSchema({
'nextLevelTags.$': {
type: String,
},
// Same as in SlotFillers.js
slotFillerCondition: {
type: String,
optional: true,
},
});
export { ClassLevelSchema };