mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
36 lines
No EOL
601 B
JavaScript
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;
|