UNPKG

node-red-contrib-twilio-ivr

Version:
35 lines (30 loc) 844 B
<script type="text/javascript"> RED.nodes.registerType('twiml-end',{ category: 'TwilioIVR-function', color: '#a6bbcf', defaults: { name: {value:""} }, inputs:1, outputs:1, icon: 'parser-html.png', align: 'right', paletteLabel: 'twiml-end', label: function() { return this.name||"twiml-end"; } }); </script> <script type="text/x-red" data-template-name="twiml-end"> <div class="form-row"> <label for="node-input-name"><i class="icon-tag"></i> Name</label> <input type="text" id="node-input-name" placeholder="Name"> </div> </script> <script type="text/x-red" data-help-name="twiml-end"> <p>End the TwiML response.</p> <h3>References</h3> <ul> <li><a href="https://www.twilio.com/docs/voice/twiml">Twilio TwiML documentation</a></li> </ul> </script>