Skip to content

Commit

Permalink
Adding async start event (#2438)
Browse files Browse the repository at this point in the history
  • Loading branch information
sumesh-aot authored Dec 17, 2024
1 parent 6928626 commit 7c288dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion forms-flow-api/src/formsflow_api/constants/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def default_flow_xml_data(name="Defaultflow"):
modeler:executionPlatform="Camunda Platform"
modeler:executionPlatformVersion="7.15.0">
<bpmn:process id="{name}" name="{name}" isExecutable="true">
<bpmn:startEvent id="StartEvent_1" name="Default Flow Started">
<bpmn:startEvent id="StartEvent_1" name="Default Flow Started" camunda:asyncAfter="true">
<bpmn:outgoing>Flow_09rbji4</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:task id="Audit_Task_Executed" name="Execute Audit Task">
Expand Down
2 changes: 1 addition & 1 deletion forms-flow-web/src/components/Modeler/helpers/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const createNewProcess = () => {
const blankProcessXML = `<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" id="${definitionID}" targetNamespace="http://bpmn.io/schema/bpmn" xmlns:modeler="http://camunda.org/schema/modeler/1.0" exporter="Camunda Modeler" exporterVersion="5.0.0" modeler:executionPlatform="Camunda Platform" modeler:executionPlatformVersion="7.17.0">
<bpmn:process id="${processID}" isExecutable="${isExecutable}">
<bpmn:startEvent id="StartEvent_1" />
<bpmn:startEvent id="StartEvent_1" camunda:asyncAfter="true"/>
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="${processID}">
Expand Down

0 comments on commit 7c288dd

Please sign in to comment.