Policy Workflow Step 4

Was this helpful?
Was this helpful?
// Notify the user after submitting the request for approval.
{
//"InformationBlock" - block type which can display a notification or a progress bar.
"blockType": "InformationBlock",
"tag": "wait_fo_approve",
"children": [],
"uiMetaData": {
//"type" - notification type, possible values:
// "text" - textual message.
// "loader" - progress bar.
"type": "text",
// Set title and description for the page, only if the "type" is "text".
"title": "Waiting for approval",
"description": "Waiting for approval"
},
"permissions": [
"INSTALLER"
],
// Do not pass control to the next block after displaying the message as need to wait for Standard Registry approval.
"stopPropagation": true,
"defaultActive": true
},