1
0
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:
Hiroyasu Nishiyama 2022-01-25 20:46:01 +09:00
parent 75bcd9e8d5
commit 289815e128

View File

@ -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) || {};
} }