generator now publishes directly to a view where you can interact with your new bonfire

This commit is contained in:
Michael Q Larson
2015-01-25 23:10:05 -08:00
parent 7c6cbbf221
commit c20aa1697c
7 changed files with 170 additions and 92 deletions

View File

@@ -12,14 +12,12 @@ var bonfireSchema = new mongoose.Schema({
type: String,
unique: true
},
difficulty: Number,
difficulty: String,
description: Array,
tests: Array,
challengeSeed: String,
bonfireNumber: Number,
challengeEntryPoint: String,
challengeEntryPointNegate: String
});
module.exports = mongoose.model('Bonfire', bonfireSchema);