UNPKG
node-red-contrib-mailchimp
Version:
latest (1.0.6)
1.0.6
1.0.4
1.0.3
1.0.2
1.0.1
NodeRED node integration to MailChimp Service
hugomastromauro/node-red-contrib-mailchimp
node-red-contrib-mailchimp
/
mailchimp-config.js
11 lines
(10 loc)
•
307 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
module
.
exports
=
function
(
RED
) {
function
RemoteServerNode
(
n
) {
RED
.
nodes
.
createNode
(
this
,n);
this
.
apiKey
=
this
.
credentials
.
apiKey
;
this
.
name
= n.
name
; }
RED
.
nodes
.
registerType
(
"mailchimp-config"
,
RemoteServerNode
,{
credentials
: {
apiKey
: {
type
:
"text"
} }}); }