Condensed logs to a single card per action
This commit is contained in:
19
app/imports/api/properties/subSchemas/RollDetailsSchema.js
Normal file
19
app/imports/api/properties/subSchemas/RollDetailsSchema.js
Normal file
@@ -0,0 +1,19 @@
|
||||
import SimpleSchema from 'simpl-schema';
|
||||
|
||||
const RollDetailsSchema = new SimpleSchema({
|
||||
number: {
|
||||
type: Number,
|
||||
},
|
||||
diceSize: {
|
||||
type: Number,
|
||||
},
|
||||
values: {
|
||||
type: Array,
|
||||
defaultValue: [],
|
||||
},
|
||||
'values.$': {
|
||||
type: Number,
|
||||
},
|
||||
});
|
||||
|
||||
export default RollDetailsSchema;
|
||||
Reference in New Issue
Block a user