import { Meteor } from 'meteor/meteor'; import { ChatSubscription } from '../../app/models/client'; Meteor.methods({ openRoom(rid) { if (!Meteor.userId()) { return false; } ChatSubscription.update( { rid, 'u._id': Meteor.userId(), }, { $set: { open: true, }, }, ); }, });