postFunctions property

List<CreateWorkflowTransitionRule> postFunctions
final

The workflow post functions.

Note: The default post functions are always added to the initial transition, as in:

"postFunctions": [
    {
        "type": "IssueCreateFunction"
    },
    {
        "type": "IssueReindexFunction"
    },
    {
        "type": "FireIssueEventFunction",
        "configuration": {
            "event": {
                "id": "1",
                "name": "issue_created"
            }
        }
    }
]

Note: The default post functions are always added to the global and directed transitions, as in:

"postFunctions": [
    {
        "type": "UpdateIssueStatusFunction"
    },
    {
        "type": "CreateCommentFunction"
    },
    {
        "type": "GenerateChangeHistoryFunction"
    },
    {
        "type": "IssueReindexFunction"
    },
    {
        "type": "FireIssueEventFunction",
        "configuration": {
            "event": {
                "id": "13",
                "name": "issue_generic"
            }
        }
    }
]

Implementation

final List<CreateWorkflowTransitionRule> postFunctions;