todos-contra-el-fuego-web/imports/api/FireAlerts/server/publications.js
2017-12-15 17:42:45 +01:00

8 lines
210 B
JavaScript

/* eslint-disable prefer-arrow-callback */
import { Meteor } from 'meteor/meteor';
import FireAlerts from '../FireAlerts';
Meteor.publish('fireAlerts', function fireAlerts() {
return FireAlerts.find();
});