1
0

publications.js 162 B

1234567
  1. Meteor.publish('projects', function() {
  2. return ProjectService.list();
  3. });
  4. Meteor.publish('deployment', function(id) {
  5. return DeploymentService.get(id);
  6. });