Show only boards in which the user participate in the home page grid

Fixes #218
pull/198/merge
Maxime Quandalle 11 years ago
parent dd08485b36
commit bd331122b8
  1. 5
      client/components/boards/boardList.js
  2. 1
      server/publications/boards.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']
});
},

@ -26,6 +26,7 @@ Meteor.publish('boards', function() {
slug: 1,
title: 1,
color: 1,
members: 1,
permission: 1
}
});

Loading…
Cancel
Save