mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
add support of FLOW_ID & FLOW_NAME
This commit is contained in:
parent
75bcd9e8d5
commit
289815e128
@ -499,6 +499,12 @@ class Flow {
|
|||||||
*/
|
*/
|
||||||
getSetting(key) {
|
getSetting(key) {
|
||||||
const flow = this.flow;
|
const flow = this.flow;
|
||||||
|
if (key === "FLOW_NAME") {
|
||||||
|
return flow.label;
|
||||||
|
}
|
||||||
|
if (key === "FLOW_ID") {
|
||||||
|
return flow.id;
|
||||||
|
}
|
||||||
if (flow.credentials === undefined) {
|
if (flow.credentials === undefined) {
|
||||||
flow.credentials = credentials.get(flow.id) || {};
|
flow.credentials = credentials.get(flow.id) || {};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user