summaryrefslogtreecommitdiffstats
path: root/client/components/boards/boardList.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/components/boards/boardList.js')
-rw-r--r--client/components/boards/boardList.js5
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']
});
},