Pallete : custom task that extends from a service task

hi,
i’m working on activiti bpm engine and i want to create a mail task,
so i want to create a custom task which extends from a service task and add an attribute to it

this is my basic code

 return {
      mail: {
        group: 'tools',
        className: ['fa-envelope', 'fa'],
        title: 'Mail task',
        draggable: true
      },
        action: {
          dragstart: console.log('dragged'),
          click: () => console.log( 'TEST Action clicked!')
      },
    };

Hi @ahmedamine,

so this seems to be some kind of your palette extension, right? Did you already do something to create your custom task element? It seems to come close to our custom elements example