Skip to content
Snippets Groups Projects

Resolve "Allow filtering for workflows on admin execution page"

4 files
+ 52
21
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -50,6 +50,7 @@ export class WorkflowExecutionService {
* @param executorId Filter for workflow executions by a user. If none, Permission `workflow_execution:read_any` required.
* @param executionStatus Filter for status of workflow execution
* @param workflowVersionId Filter for workflow version
* @param workflowId Filter for workflow
* @param startAfter Filter for workflow executions that started after this UNIX timestamp
* @param startBefore Filter for workflow executions that started before this UNIX timestamp
* @param idAfter Id of the item to start the query from. DO NOT SET MANUALLY.
@@ -62,6 +63,7 @@ export class WorkflowExecutionService {
executorId?: string,
executionStatus?: Array<WorkflowExecutionStatus>,
workflowVersionId?: string,
workflowId?: string,
startAfter?: number,
startBefore?: number,
idAfter?: string,
@@ -75,6 +77,7 @@ export class WorkflowExecutionService {
'executor_id': executorId,
'execution_status': executionStatus,
'workflow_version_id': workflowVersionId,
'workflow_id': workflowId,
'start_after': startAfter,
'start_before': startBefore,
'id_after': idAfter,
Loading