blob: aab1e2c6db7bf676eb61627ed73229ed52f691ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
Template.boardListHeaderBar.events({
'click .js-open-archived-board'() {
Modal.open('archivedBoards');
},
});
BlazeComponent.extendComponent({
onCreated() {
this.subscribe('archivedBoards');
},
archivedBoards() {
return Boards.find({ archived: true }, {
sort: ['title'],
});
},
events() {
return [{
'click .js-restore-board'() {
const board = this.currentData();
board.restore();
Utils.goBoardId(board._id);
},
}];
},
}).register('archivedBoards');
|