Explorar o código

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

Frederic G. MARAND %!s(int64=9) %!d(string=hai) anos
pai
achega
d7c1c3e6a9
Modificáronse 1 ficheiros con 6 adicións e 1 borrados
  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 }
+     ]
+    });
   });
 }