mirror of
https://github.com/wekan/wekan.git
synced 2025-12-22 10:20:14 +01:00
A Sandstorm user can restore an archived board
This commit is contained in:
parent
d2b1a837e6
commit
1eaada0feb
3 changed files with 16 additions and 0 deletions
|
|
@ -18,6 +18,13 @@ BlazeComponent.extendComponent({
|
|||
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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue