Browse Source

Step 9.6: Update getMeteorData to return data about user.

Frederic G. MARAND 8 years ago
parent
commit
5a46df5f6d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      App.jsx

+ 2 - 1
App.jsx

@@ -25,7 +25,8 @@ App = React.createClass({
       tasks: Tasks.find(query, { sort: { createdAt: -1 }}).fetch(),
       // Since we already have the data in the client-side Minimongo collection,
       // adding this extra count doesn't involve asking the server for anything.
-      incompleteCount: Tasks.find(uncheckedQuery).count()
+      incompleteCount: Tasks.find(uncheckedQuery).count(),
+      currentUser: Meteor.user()
     };
 
     // Meteor._debug("result", result);