Add Feature: allow user to search Lists in Board

This commit is contained in:
Sam X. Chen 2019-10-19 00:28:49 -04:00
parent d2d4840758
commit 32f50e1658
6 changed files with 236 additions and 219 deletions

View file

@ -269,6 +269,10 @@ Lists.helpers({
return this.starred === true;
},
absoluteUrl() {
const card = Cards.findOne({ listId: this._id });
return card && card.absoluteUrl();
},
remove() {
Lists.remove({ _id: this._id });
},