mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-14 17:03:02 -06:00
8 lines
260 B
TypeScript
8 lines
260 B
TypeScript
import { Meteor } from 'meteor/meteor';
|
|
import { Systems } from '../../../imports/collections/systems';
|
|
import { System } from '../../../imports/models/system';
|
|
|
|
Meteor.publish('systems', (): Mongo.Cursor<System> => {
|
|
return Systems.collection.find();
|
|
});
|