mirror of
https://github.com/vale981/grapher
synced 2025-03-06 01:51:38 -05:00
11 lines
No EOL
301 B
JavaScript
11 lines
No EOL
301 B
JavaScript
import Exposure from './exposure.js';
|
|
|
|
_.extend(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);
|
|
}
|
|
}); |