Added spell and spell list forms

This commit is contained in:
Stefan Zermatten
2019-07-29 12:49:19 +02:00
parent 02cb690325
commit 73b43574ee
5 changed files with 277 additions and 16 deletions

View File

@@ -24,7 +24,6 @@ let SpellListSchema = schema({
type: String,
regEx: VARIABLE_NAME_REGEX,
min: 3,
defaultValue: 'newAttribute',
},
description: {
type: String,
@@ -72,3 +71,4 @@ const updateSpellList = new ValidatedMethod({
});
export default SpellLists;
export { SpellListSchema }