Есть ли способ получить текущий идентификатор платы, которая в данный момент использует питание?
как-то так в моем 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',
});
}
}];
})
},
});
, когда при инициализации при включении питания Я хочу консольный журнал board Id
.