Skip to content

Commit

Permalink
Fix #169
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphhanna committed Jan 19, 2024
1 parent 8ef8ab9 commit d8a5b7d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
9 changes: 4 additions & 5 deletions docs/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,17 @@ We assume that you are already familiar with setting up bpmn-server along with y

Please note code in this page is for illustration purposes only.


## Workflow Application Components

### UI and User Authentication

In the demo app:

- root files
- Web Files; views, routes, public

![](images/bpmn-web-folders.png)

### Workflow app

<table>
Expand All @@ -46,15 +47,13 @@ Entry point to application configuration parameters and defining various compone
This is your custom installation of bpmn-server


# Putting it Togother

## Use Case 1: Staging a Process
### Use Case 1: Staging a Process
In this use case a User invokes some business logic that requires a process start ...
When a process reaches a User Task it issues a notification to user(s).

![](images/processStart.png)

## Use Case 2: Invoking an Oustatnding Tasks
### Use Case 2: Invoking Oustatnding (User Tasks in wait state) Tasks


![](images/invokeTask.png)
Expand Down
5 changes: 4 additions & 1 deletion src/elements/Definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,13 @@ class Definition implements IDefinition{

processElement.laneSets.forEach(ls=>{
ls.lanes.forEach(lane=>{
lane.flowNodeRef.forEach(fnr=>{
if (lane.flowNodeRef) {
lane.flowNodeRef.forEach(fnr=>{
let target = this.getNodeById(fnr.id);
target.lane=lane.name;
});
}

});
});
}
Expand Down

0 comments on commit d8a5b7d

Please sign in to comment.