| 12345678910111213141516171819202122232425262728293031323334 | 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'() {        // TODO : Make isSandstorm variable global        const isSandstorm = Meteor.settings && Meteor.settings.public &&          Meteor.settings.public.sandstorm;        if (isSandstorm && Session.get('currentBoard')) {          const currentBoard = Boards.findOne(Session.get('currentBoard'));          currentBoard.archive();        }        const board = this.currentData();        board.restore();        Utils.goBoardId(board._id);      },    }];  },}).register('archivedBoards');
 |