zhao/imports/api/methods/newGame.js
2020-11-26 23:59:25 -06:00

9 lines
185 B
JavaScript

import { Meteor } from 'meteor/meteor';
import { check } from 'meteor/check';
Meteor.methods({
"newGame"({ name }) {
check(name, String);
console.log("name", name);
},
});