Vulcan/packages/nova-newsletter/lib/collection.js
2016-04-05 11:03:53 +09:00

36 lines
No EOL
601 B
JavaScript

// Telescope.newsletter = {};
// var campaignSchema = new SimpleSchema({
// _id: {
// type: String,
// optional: true
// },
// createdAt: {
// type: Date,
// optional: true
// },
// sentAt: {
// type: String,
// optional: true
// },
// status: {
// type: String,
// optional: true
// },
// posts: {
// type: [String],
// optional: true
// },
// webHits: {
// type: Number,
// optional: true
// },
// });
// const Campaigns = new Meteor.Collection("campaigns", {
// schema: campaignSchema
// });
// export default Campaigns;