UNPKG
node-red-contrib-push
Version:
latest (0.0.1)
0.0.1
Push notifications for node-red
node-red-contrib-push
/
gcm
/
gcm-configuration.js
7 lines
•
243 B
JavaScript
View Raw
1
2
3
4
5
6
7
module
.
exports
=
function
(
RED
) {
function
GCMConfigurationNode
(
config
) {
RED
.
nodes
.
createNode
(
this
, config);
this
.
apiKey
= config.
apiKey
; }
RED
.
nodes
.
registerType
(
"gcm-configuration"
,
GCMConfigurationNode
); }