Feature: add deployment + deployment logs

This commit is contained in:
2015-11-25 15:13:00 +00:00
parent 9c8ed27c1b
commit e135c5d2c6
19 changed files with 416 additions and 68 deletions

View File

@@ -3,5 +3,9 @@ Projects = new Mongo.Collection('projects');
ProjectService = {
list: function() {
return Projects.find({}, {sort: {label: 1}});
},
get: function(id) {
return Projects.findOne({_id: id});
}
};