Skip to content
Snippets Groups Projects
actions.js 648 B
Newer Older
  • Learn to ignore specific revisions
  • Tobias Ullerich's avatar
    Tobias Ullerich committed
    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) => {
                    const payload = {
    
                        'pad': '8b7ef494-d735-45f9-ab84-c95e299298a6'
    
                    self.sendToWebSocket('cart-action', payload)
    
    Tobias Ullerich's avatar
    Tobias Ullerich committed
    }