Vulcan/packages/nova-posts/lib/collection.js

11 lines
303 B
JavaScript
Raw Normal View History

2016-06-23 12:17:39 +09:00
const PostsStub = {
helpers: x => x
}
/* we need to handle two scenarios: when the package is called as a Meteor package,
and when it's called as a NPM package */
2016-11-08 15:12:23 +09:00
const Posts = typeof Mongo !== 'undefined' ? new Mongo.Collection('posts') : PostsStub;
2016-06-23 12:17:39 +09:00
2016-11-08 15:12:23 +09:00
Posts.typeName = 'Post';
2016-06-23 12:17:39 +09:00
export default Posts;