Is there a way to get the mongo/meteor collection for cronHistory? I need to specify the collection to pass along to a datatables component. If I try to create the collection manually like
export const CronHistory = new Mongo.Collection('cronHistory');
It complains that there is already a collection.
Error: There is already a collection named "cronHistory";
In the past, I have looked here:
Meteor.connection._stores[]
But I do not see the collection there.
Is there a way to get the mongo/meteor collection for cronHistory? I need to specify the collection to pass along to a datatables component. If I try to create the collection manually like
export const CronHistory = new Mongo.Collection('cronHistory');
It complains that there is already a collection.
Error: There is already a collection named "cronHistory";
In the past, I have looked here:
Meteor.connection._stores[]
But I do not see the collection there.