Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt

Retrieves a list of all workflows in the Jira environment.

Return type

stringJWorkflow[] (array of strings)

Returns a list of all workflow namesrepresentations.

Example

Code Block
JFilter filter;
filter.id=10405;
filter.name = "Updatedname";
filter.description = "New Description";
filter.query = "project=TEST AND assignee=admin";
filter.owner = "admin";
boolean a = admUpdateFilter(filter);
runnerLog("Filter updated? "+ a + "\n" +
		  "The update filter is: "+ admGetFilterById("10405"))JWorkflow[] workflows = getAllWorkflows();
return workflows;


Info

The filter can be partially updated by specifying only the attribute needed to be updated in the JFilter structure.

...