소스 검색

Step 9.6: Update getMeteorData to return data about user.

Frederic G. MARAND 8 년 전
부모
커밋
5a46df5f6d
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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);