UNPKG
node-red-contrib-push
Version:
latest (0.0.1)
0.0.1
Push notifications for node-red
node-red-contrib-push
/
apn
/
apn-app.js
9 lines
•
287 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module
.
exports
=
function
(
RED
) {
function
APNAppNode
(
n
) {
RED
.
nodes
.
createNode
(
this
, n);
this
.
token
=
RED
.
nodes
.
getNode
(n.
token
);
this
.
topic
= n.
topic
;
this
.
production
= n.
production
; }
RED
.
nodes
.
registerType
(
"apn-app"
,
APNAppNode
); }