-
Notifications
You must be signed in to change notification settings - Fork 0
/
externaltask-output.html
36 lines (30 loc) · 1.21 KB
/
externaltask-output.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<script type="text/javascript">
RED.nodes.registerType('externaltask-output', {
category: 'ProcessCube',
color: '#02AFD6',
defaults: {
name: { value: '' },
},
inputs: 1,
outputs: 0,
icon: 'externaltask_output.svg',
label: function () {
return this.name || 'externaltask-output';
},
});
</script>
<script type="text/html" data-template-name="externaltask-output">
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name" />
</div>
</script>
<script type="text/markdown" data-help-name="externaltask-output">
Used to complete the external task. The `msg.payload` is returned to the ProcessCube
engine as the result of the external task.
## Inputs
: payload (Object) : Returned to the ProcessCube engine as the result of the external task
### References
- [The ProcessCube© Developer Network](https://processcube.io) - All documentation for the ProcessCube© platform
- [ProcessCube© LowCode Integration](https://processcube.io/docs/node-red) - LowCode integration in ProcessCube©
</script>