Building out new challenge framework to allow controller to determine view type for challenge

This commit is contained in:
Nathan Leniz
2015-02-13 20:55:49 -05:00
parent 0eededde36
commit b5c0ad9942
14 changed files with 515 additions and 58 deletions

View File

@@ -15,8 +15,7 @@ var bonfireSchema = new mongoose.Schema({
difficulty: String,
description: Array,
tests: Array,
challengeSeed: String,
challengeEntryPoint: String,
challengeSeed: String
});
module.exports = mongoose.model('Bonfire', bonfireSchema);