Route action to re-route to another page
Parameters:
Name |
Type |
Description |
node |
object
|
The configuration object for the route action
Properties
Name |
Type |
Default |
Description |
type |
string
|
'action'
|
The type of the node is action |
actionType |
string
|
'route'
|
The actionType of the node is route |
text |
string
|
|
The text to display on the button |
options |
object
|
|
The options pertaining to the route action
Properties
Name |
Type |
Description |
target |
string
|
The uri to route to |
data |
object
|
The data to send along when routing |
params |
object
|
Key-value pairs to merge pass along as data when routing |
paramsKey |
string
|
The key of the data for the parameters |
|
|
- Source:
Example
{
"type": "action",
"actionType": "route",
"text": "Add User",
"options": {
"target": "add-user"
}
}