123456789101112131415161718192021222324252627282930313233343536 |
- /**
- * @file
- *
- *
- * User: marand
- * Date: 30/08/15
- * Time: 11:33
- */
- if (Posts.find().count() === 0) {
- var data = [
- {
- title: "Introducing Telescope",
- url: "http://sachagreif.com/introducing-telescope",
- author: "Sacha Greif"
- },
- {
- title: "Meteor",
- url: "http://meteor.com",
- author: "Tom Coleman"
- },
- {
- title: "The Meteor book",
- url: "http://themeteorbook.com",
- author: "Meteor Inc."
- }
- ];
- data.forEach(function (post) {
- Meteor._debug("Inserting", post);
- Posts.insert(post);
- });
- }
- else {
- Meteor._debug('Posts collection is not empty');
- }
|