Skip to content

Commit 001ecf3

Browse files
Merge pull request #18 from docusign/bugfix
remove query param
2 parents 61e2601 + 7df78d1 commit 001ecf3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

server/services/workflowsService.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ const { initMaestroApi } = require('../api');
1414
class WorkflowsService {
1515
static getWorkflowDefinitions = async args => {
1616
const api = initMaestroApi(args.accountId, args.basePath, args.accessToken);
17-
const definitions = await api.getWorkflowDefinitions({
18-
status: 'active',
19-
});
17+
const definitions = await api.getWorkflowDefinitions({});
2018

2119
return definitions;
2220
};

0 commit comments

Comments
 (0)