mirror of
https://github.com/Febbweiss/ProjectDeployer.git
synced 2026-03-04 22:25:38 +00:00
Feature: add deployment + deployment logs
This commit is contained in:
@@ -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);
|
||||
});
|
||||
Reference in New Issue
Block a user