Select Git revision
accounts.ftl
-
Robert Goldmann authoredRobert Goldmann authored
actions.js 342 B
module.exports = function (self) {
self.setActionDefinitions({
sample_action: {
name: 'Trigger Pad',
options: [
{
id: 'num',
type: 'number',
label: 'Test',
default: 5,
min: 0,
max: 100,
},
],
callback: async (event) => {
console.log('Hello world!', event.options.num)
},
},
})
}