Skip to content

Missing explanation in 04s #17

@Viktorminator

Description

@Viktorminator

Please add next:

When you launch code on server

Meteor.publish('posts', function() {
  return Posts.find({flagged: false});
});

you must change your fixture file fixture.js (to add flagged: false field):

if (Posts.find().count() === 0) {
    Posts.insert({
      title: 'Introducing Telescope',
      author: 'Sasha Greif',
      url: 'http://sachagreif.com/',
      flagged: false
    });
}

And make meteor reset command in Terminal.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions