mirror of
https://github.com/Febbweiss/ProjectDeployer.git
synced 2026-03-05 06:35:42 +00:00
7 lines
162 B
JavaScript
7 lines
162 B
JavaScript
Meteor.publish('projects', function() {
|
|
return ProjectService.list();
|
|
});
|
|
|
|
Meteor.publish('deployment', function(id) {
|
|
return DeploymentService.get(id);
|
|
}); |