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 @@ Meteor.publish('projects', function() {
});
Meteor.publish('deployment', function(id) {
return DeploymentService.get(id);
return DeploymentService.get(id);
});
Meteor.publish('deployments', function(project_id) {
return DeploymentService.list(project_id);
});