conductor-oss / conductor-oss/conductor

UI does not have HUMAN task type in select list

Open
#704 1 comment 0 reactions 0 assignees View on GitHub
bug ui
Dominant language
Java
Stars
32.2k
Forks
1k
Avg merge
2d 3h
Merged PRs (30d)
37

Description

### Describe the bug

The select box for task types to search does not include HUMAN:

Image

Create this workflow and start it:

```
{
"createTime": 1763999284669,
"updateTime": 1767622045209,
"name": "Human event test",
"description": "Edit or extend this sample workflow. Set the workflow name to get started",
"version": 3,
"tasks": [
{
"name": "call_remote_api",
"taskReferenceName": "call_remote_api",
"inputParameters": {
"http_request": {
"uri": "https://orkes-api-tester.orkesconductor.com/api",
"method": "GET"
}
},
"type": "HTTP",
"decisionCases": {},
"defaultCase": [],
"forkTasks": [],
"startDelay": 0,
"joinOn": [],
"optional": false,
"defaultExclusiveJoinTask": [],
"asyncComplete": false,
"loopOver": [],
"onStateChange": {},
"permissive": false
},
{
"name": "human",
"taskReferenceName": "human_ref",
"inputParameters": {
"ITSM_CHANGE_ID": "CHG1234987",
"ITSM_BLOCKED": true
},
"type": "HUMAN",
"decisionCases": {},
"defaultCase": [],
"forkTasks": [],
"startDelay": 0,
"joinOn": [],
"optional": false,
"defaultExclusiveJoinTask": [],
"asyncComplete": false,
"loopOver": [],
"onStateChange": {},
"permissive": false
}
],
"inputParameters": [],
"outputParameters": {
"data": "${call_remote_api.output.response.body.data}",
"source": "${call_remote_api.output.response.body.source}"
},
"schemaVersion": 2,
"restartable": true,
"workflowStatusListenerEnabled": false,
"ownerEmail": "example@email.com",
"timeoutPolicy": "ALERT_ONLY",
"timeoutSeconds": 0,
"variables": {},
"inputTemplate": {},
"enforceSchema": true,
"metadata": {},
"maskedFields": []
}
```

In the search UI, there is no way to search for `taskType IN (HUMAN) AND status IN (IN_PROGRESS)`

Via curl, it shows up when interrogating the following URL:

`https:///api/tasks/search?query=taskType IN (HUMAN) AND status IN (IN_PROGRESS)`

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.