...
Here are the two ways to check, in which workflow(s) the app post function is configured through the Create on Transition app.
Usage Information through XML export:
- Export all workflows in an XML format.
- Open the exported XML file in any browser.
- Search for this text: <arg name="class.name">org.swift.jira.cot
- If you get any search results, it indicates the Create on Transition app is being used in that workflow(s).
Usage information through database query:
Run the below query in your database and check if you get any workflow names.
Code Block theme Midnight select workflowname from jiraworkflows where descriptor like '%<arg name="class.name">org.swift.jira.cot%';
If you get any search results, it indicates the Create on Transition app is being used in that workflow(s).
...