zhao/imports/api/methods/newGame.js

10 lines
185 B
JavaScript
Raw Normal View History

2020-11-27 05:59:25 +00:00
import { Meteor } from 'meteor/meteor';
import { check } from 'meteor/check';
Meteor.methods({
"newGame"({ name }) {
check(name, String);
console.log("name", name);
},
});