Links from database are being passed to the view. TODO create links

This commit is contained in:
A. Drake
2015-03-23 23:20:19 -04:00
parent 5bfd8a8d54
commit 0bf68fea5f
5 changed files with 48 additions and 4 deletions

View File

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