grapher/lib/exposure/extension.js
2018-03-29 19:04:43 +03:00

14 lines
354 B
JavaScript

import Exposure from './exposure.js';
Object.assign(Mongo.Collection.prototype, {
expose(config) {
if (!Meteor.isServer) {
throw new Meteor.Error(
'not-allowed',
`You can only expose a collection server side. ${this._name}`
);
}
new Exposure(this, config);
},
});