Skip to content

Commit b0fcab4

Browse files
committed
Merge pull request #675 from Tallyb/patch-1
Articles references update
2 parents dcbd819 + ed1b585 commit b0fcab4

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.docs/angular-meteor/client/content/tutorials/angular1/steps/tutorial.step_09.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{{#template name="tutorial.step_09.md"}}
22
{{> downloadPreviousStep stepName="step_08"}}
33

4+
5+
Publish and subscribe to data is very different from other methods, such as using REST APIs. So don't miss the articles in the section below for deeper understanding how they work.
6+
7+
48
Right now our app has no privacy, every user can see all the parties on the screen.
59

610
So let's add a `public` flag on parties - if a party is public we will let anyone see it, but if a party is private, only the owner can see it.
@@ -252,7 +256,7 @@ It is very important to understand Meteor's Publish-Subscribe mechanism so you d
252256
Meteor accumulates all the data from the different subscription of a collection in the client, so adding a different subscription in a different
253257
view won't delete the data that is already in the client.
254258

255-
Please read more [here](http://www.meteorpedia.com/read/Understanding_Meteor_Publish_and_Subscribe).
259+
More information about publications and subscription in [this blog article] (https://medium.com/angular-meteor/coll-pub-sub-with-angular-meteor-cb13fe48f570) and this [meteorpedia article](http://www.meteorpedia.com/read/Understanding_Meteor_Publish_and_Subscribe).
256260

257261
# Summary
258262

@@ -261,8 +265,6 @@ We've added the support of privacy to our parties app.
261265
We also learned how to use the `Meteor.publish` command to control permissions and the data sent to the client
262266
and how to subscribe to it with the $meteor.collection publish function.
263267

264-
If you are not quite sure what is the difference between collection and publication - you may want to check this article on the [blog] (https://medium.com/angular-meteor/coll-pub-sub-with-angular-meteor-cb13fe48f570)
265-
266268
In the next step we will learn how to filter the users list in the client side with AngularJS filters and create a custom filter for our own needs.
267269

268270
{{/template}}

0 commit comments

Comments
 (0)