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