English
flow.approval.reject.processingmovetocurrent.title.render.before
About 188 wordsLess than 1 minute
2025-11-24
This hook is used before rendering the title text shown when, after rejection, the workflow moves to the current node.
Note: This hook is used before rendering the title text shown when, after rejection, the workflow moves to the current node.
updateProcessingMoveToCurrentTitle
Customize the text shown after processing an approval rejection node and moving to the current node.
Parameters
| Parameter | Description | Type |
|---|---|---|
| options | Original title text | String |
Parameter Code Example
return Promise.resolve("Plugin - After this specified node is processed, move to the current node");Code Example
module.exports = function (context, pluginService, pluginParam) {
return {
apply() {
let self = this;
return [
{
/**
* After this specified node is processed, move to the current node
*/
event: "flow.approval.reject.processingmovetocurrent.title.render.before",
functional: async function (context, options) {
return Promise.resolve("Plugin - After this specified node is processed, move to the current node");
}
];
}
};
};
