pushover node - hide user id and well as api key

This commit is contained in:
Dave Conway-Jones 2020-05-24 16:42:28 +01:00
parent 18afc438da
commit e2c9a6521e
No known key found for this signature in database
GPG Key ID: 302A6725C594817F
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
<script type="text/x-red" data-template-name="pushover">
<script type="text/html" data-template-name="pushover">
<div class="form-row">
<label for="node-input-title"><i class="fa fa-flag"></i> Title</label>
<input type="text" id="node-input-title" placeholder="Node-RED">
@ -55,7 +55,7 @@
</div>
<div class="form-row">
<label for="node-input-deviceid"><i class="fa fa-user"></i> User key</label>
<input type="text" id="node-input-deviceid">
<input type="password" id="node-input-deviceid">
</div>
<div class="form-row">
<label for="node-input-pushkey"><i class="fa fa-key"></i> API token</label>
@ -72,7 +72,7 @@
Leave sound blank to use the default, or set using <code>msg.sound</code>.</div>
</script>
<script type="text/x-red" data-help-name="pushover">
<script type="text/html" data-help-name="pushover">
<p>Uses Pushover to push the msg.payload to a device that has the Pushover app installed.</p>
<br>
<p>Optionally uses msg.topic to set the configuration:</p>

View File

@ -1,6 +1,6 @@
{
"name" : "node-red-node-pushover",
"version" : "0.0.19",
"version" : "0.0.20",
"description" : "A Node-RED node to send alerts via Pushover",
"dependencies" : {
"pushover-notifications" : "^1.2.2"