mirror of
https://github.com/wekan/wekan.git
synced 2025-12-18 16:30:13 +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() {
|
events() {
|
||||||
return [{
|
return [{
|
||||||
'click .js-restore-board'() {
|
'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();
|
const board = this.currentData();
|
||||||
board.restore();
|
board.restore();
|
||||||
Utils.goBoardId(board._id);
|
Utils.goBoardId(board._id);
|
||||||
|
|
|
||||||
|
|
@ -72,6 +72,12 @@ template(name="boardHeaderBar")
|
||||||
i.fa.fa-sign-in
|
i.fa.fa-sign-in
|
||||||
span {{_ 'log-in'}}
|
span {{_ 'log-in'}}
|
||||||
|
|
||||||
|
if isSandstorm
|
||||||
|
if currentUser
|
||||||
|
a.board-header-btn.js-open-archived-board
|
||||||
|
i.fa.fa-archive
|
||||||
|
span {{_ 'archives'}}
|
||||||
|
|
||||||
a.board-header-btn.js-open-filter-view(
|
a.board-header-btn.js-open-filter-view(
|
||||||
title="{{#if Filter.isActive}}{{_ 'filter-on-desc'}}{{else}}{{_ 'filter'}}{{/if}}"
|
title="{{#if Filter.isActive}}{{_ 'filter-on-desc'}}{{else}}{{_ 'filter'}}{{/if}}"
|
||||||
class="{{#if Filter.isActive}}emphasis{{/if}}")
|
class="{{#if Filter.isActive}}emphasis{{/if}}")
|
||||||
|
|
|
||||||
|
|
@ -77,6 +77,9 @@ BlazeComponent.extendComponent({
|
||||||
'click .js-open-board-menu': Popup.open('boardMenu'),
|
'click .js-open-board-menu': Popup.open('boardMenu'),
|
||||||
'click .js-change-visibility': Popup.open('boardChangeVisibility'),
|
'click .js-change-visibility': Popup.open('boardChangeVisibility'),
|
||||||
'click .js-watch-board': Popup.open('boardChangeWatch'),
|
'click .js-watch-board': Popup.open('boardChangeWatch'),
|
||||||
|
'click .js-open-archived-board'() {
|
||||||
|
Modal.open('archivedBoards');
|
||||||
|
},
|
||||||
'click .js-open-filter-view'() {
|
'click .js-open-filter-view'() {
|
||||||
Sidebar.setView('filter');
|
Sidebar.setView('filter');
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue