announcements.js 99 B

1234
  1. Meteor.publish('announcements', function() {
  2. const ret = Announcements.find();
  3. return ret;
  4. });