First swimlane draft, no functionality

This commit is contained in:
Andrés Manelli 2018-01-19 12:22:03 -03:00
parent 8b6a2eade3
commit 690a5b9703
16 changed files with 474 additions and 173 deletions

View file

@ -75,10 +75,11 @@ Lists.allow({
});
Lists.helpers({
cards() {
cards(swimlaneId) {
return Cards.find(Filter.mongoSelector({
listId: this._id,
archived: false,
swimlaneId: swimlaneId,
}), { sort: ['sort'] });
},