Is there a way to get the current ID of the board currently using the power-up?
something like this in my client.js
var Promise = TrelloPowerUp.Promise;
TrelloPowerUp.initialize({
// Start adding handlers for your capabilities here!
'current-board': function(t, options){
console.log(boardId) // I want to get the board's Id
},
'card-buttons': function(t, options) {
return t.set("member", "shared", "hello", "world")
.then(function(){
return [{
icon: BLACK_ROCKET_ICON,
text: 'Estimate Size',
callback: function(t) {
return t.popup({
title: "Estimation",
url: 'estimate.html',
});
}
}];
})
},
});
when the powerup is Initialize I want to console log the board Id
.