diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/components/boards/boardList.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/client/components/boards/boardList.js b/client/components/boards/boardList.js index cf6b727c..2311e7d0 100644 --- a/client/components/boards/boardList.js +++ b/client/components/boards/boardList.js @@ -4,7 +4,10 @@ BlazeComponent.extendComponent({ }, boards: function() { - return Boards.find({ archived: false }, { + return Boards.find({ + archived: false, + 'members.userId': Meteor.userId() + }, { sort: ['title'] }); }, |