Pārlūkot izejas kodu

Step 11.9: Only publish tasks the current user can see.

Frederic G. MARAND 8 gadi atpakaļ
vecāks
revīzija
d7c1c3e6a9
1 mainītis faili ar 6 papildinājumiem un 1 dzēšanām
  1. 6 1
      simple-todos-react.jsx

+ 6 - 1
simple-todos-react.jsx

@@ -17,7 +17,12 @@ if (Meteor.isClient) {
 
 if (Meteor.isServer) {
   Meteor.publish("tasks", function () {
-    return Tasks.find();
+    return Tasks.find({
+     $or: [
+       { private: { $ne: true }},
+       { owner: this.userId }
+     ]
+    });
   });
 }