add courseware controller and routes

This commit is contained in:
Michael Q Larson
2015-02-01 23:35:27 -08:00
parent 0ee291878a
commit f059bc33d8
7 changed files with 166 additions and 250 deletions

View File

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