zhao/imports/api/publications/players.js

10 lines
228 B
JavaScript
Raw Normal View History

2020-11-27 07:34:12 +00:00
import { Meteor } from "meteor/meteor";
import Players from "../collections/Players.js";
Meteor.publish("players", (roomId) => {
2020-11-27 08:18:29 +00:00
if (roomId === undefined) {
return [];
}
2020-11-27 07:34:12 +00:00
return Players.find({ roomId });
});