Weight and value are no longer required on containers

This commit is contained in:
Stefan Zermatten
2020-05-31 15:59:37 +02:00
parent c56cebc652
commit 8f81614294

View File

@@ -18,12 +18,12 @@ let ContainerSchema = new SimpleSchema({
weight: {
type: Number,
min: 0,
defaultValue: 0
optional: true,
},
value: {
type: Number,
min: 0,
defaultValue: 0
optional: true,
},
description: {
type: String,