export board to Wekan JSON

This commit is contained in:
Xavier Priour 2015-12-09 00:35:45 +01:00
parent b719968df5
commit f20b5d04f5
6 changed files with 61 additions and 0 deletions

View file

@ -15,6 +15,12 @@ Template.boardMenuPopup.events({
}),
});
Template.boardMenuPopup.helpers({
urlExport() {
return Meteor.absoluteUrl(`api/b/${Session.get('currentBoard')}`);
},
});
Template.boardChangeTitlePopup.events({
submit(evt, tpl) {
const newTitle = tpl.$('.js-board-name').val().trim();