We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Please add next:
When you launch code on server
you must change your fixture file fixture.js (to add flagged: false field):
And make meteor reset command in Terminal.
The text was updated successfully, but these errors were encountered: