UNPKG
node-red-contrib-powerbi
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A PowerBI API interaction node-red module which allows to interact with PowerBI service.
node-red-contrib-powerbi
/
powerbi-connection.js
9 lines
•
281 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module
.
exports
=
function
(
RED
) {
function
PowerBIConnectionNode
(
n
) {
RED
.
nodes
.
createNode
(
this
,n);
this
.
accesstoken
= n.
accesstoken
;
this
.
username
= n.
username
;
this
.
password
= n.
password
; }
RED
.
nodes
.
registerType
(
'powerbi-connection'
,
PowerBIConnectionNode
); }