The following capabilities are available:
settings - Addon settings in the space
card_buttons - Addon buttons/actions
card_body_section - iframe in the body of the open card
card_facade_badges - Card facade badges
These capabilities are keys of the object passed to the function Addon.initialize({})
Addon.initialize({
card_buttons: (buttonsContext) => {
return [
text: 'My first button',
]
},
settings: (settingsContext) => {},
card_body_section: (bodySectionContext) => {
return [];
},
card_facade_badges: () => null,
});