summaryrefslogtreecommitdiffstats
path: root/client/components/boards/boardArchive.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/components/boards/boardArchive.js')
-rw-r--r--client/components/boards/boardArchive.js32
1 files changed, 16 insertions, 16 deletions
diff --git a/client/components/boards/boardArchive.js b/client/components/boards/boardArchive.js
index 1ce1a593..9d7ca7f2 100644
--- a/client/components/boards/boardArchive.js
+++ b/client/components/boards/boardArchive.js
@@ -1,8 +1,8 @@
Template.headerTitle.events({
- 'click .js-open-archived-board': function() {
- Modal.open('archivedBoards')
- }
-})
+ 'click .js-open-archived-board'() {
+ Modal.open('archivedBoards');
+ },
+});
BlazeComponent.extendComponent({
template() {
@@ -10,26 +10,26 @@ BlazeComponent.extendComponent({
},
onCreated() {
- this.subscribe('archivedBoards')
+ this.subscribe('archivedBoards');
},
archivedBoards() {
return Boards.find({ archived: true }, {
- sort: ['title']
- })
+ sort: ['title'],
+ });
},
events() {
return [{
- 'click .js-restore-board': function() {
- let boardId = this.currentData()._id
+ 'click .js-restore-board'() {
+ const boardId = this.currentData()._id;
Boards.update(boardId, {
$set: {
- archived: false
- }
- })
- Utils.goBoardId(boardId)
- }
- }]
+ archived: false,
+ },
+ });
+ Utils.goBoardId(boardId);
+ },
+ }];
},
-}).register('archivedBoards')
+}).register('archivedBoards');