UNPKG
node-red-contrib-viseo-ms-graph
Version:
bugfix00x (0.0.9)
latest (0.3.0)
0.3.0
0.3.0-alpha.8
0.3.0-alpha.7
0.3.0-alpha.6
0.3.0-alpha.5
0.3.0-alpha.4
0.3.0-alpha.3
0.3.0-alpha.1
0.2.10
0.2.9
0.2.8
0.2.7
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.0
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
VISEO Bot Maker - Microsoft Graph
NGRP/node-red-contrib-viseo
node-red-contrib-viseo-ms-graph
/
node-ms-graph-config.js
12 lines
•
352 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
module.exports =
function
(
RED
)
{
const
register
=
function
(
config
)
{ RED.nodes.
createNode
(this, config); this.name = config.name; } RED.nodes.
registerType
(
"ms-graph-config"
, register, {
credentials
: {
clientid
: {
type
:
"text"
},
clientsecret
: {
type
:
"text"
} } }); }