Renamed parties to creatureFolders
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
import SimpleSchema from 'simpl-schema';
|
import SimpleSchema from 'simpl-schema';
|
||||||
|
|
||||||
let Parties = new Mongo.Collection('parties');
|
let CreatureFolders = new Mongo.Collection('parties');
|
||||||
|
|
||||||
let partySchema = new SimpleSchema({
|
let creatureFolderSchema = new SimpleSchema({
|
||||||
name: {
|
name: {
|
||||||
type: String,
|
type: String,
|
||||||
defaultValue: 'New Party',
|
defaultValue: 'New Party',
|
||||||
@@ -21,8 +21,12 @@ let partySchema = new SimpleSchema({
|
|||||||
type: String,
|
type: String,
|
||||||
regEx: SimpleSchema.RegEx.Id,
|
regEx: SimpleSchema.RegEx.Id,
|
||||||
},
|
},
|
||||||
|
archived: {
|
||||||
|
type: Boolean,
|
||||||
|
defaultValue: true,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
Parties.attachSchema(partySchema);
|
CreatureFolders.attachSchema(creatureFolderSchema);
|
||||||
|
|
||||||
export default Parties;
|
export default CreatureFolders;
|
||||||
Reference in New Issue
Block a user