Condensed logs to a single card per action

This commit is contained in:
Stefan Zermatten
2021-02-11 15:48:23 +02:00
parent d7083cf242
commit 439eadf079
16 changed files with 281 additions and 135 deletions

View 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;