More steps towards integrating the bonfire challenge framework. Importing challnge seed, public tests, private tests, entry point and entry point negator

This commit is contained in:
Nathan Leniz
2015-01-22 15:49:16 -05:00
parent 378277f0e1
commit 0e9523ab72
6 changed files with 118 additions and 78 deletions

View File

@@ -18,7 +18,10 @@ var bonfireSchema = new mongoose.Schema({
publicTests: Array,
privateTests: Array,
challengeSeed: String,
bonfireNumber: Number
bonfireNumber: Number,
challengeEntryPoint: String,
challengeEntryPointNegate: String
});
module.exports = mongoose.model('Bonfire', bonfireSchema);