Skip to content

Commit

Permalink
Update CALL-HANDLING.md
Browse files Browse the repository at this point in the history
  • Loading branch information
robotastic authored Apr 3, 2022
1 parent 3026c13 commit a77da4b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/notes/CALL-HANDLING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,15 @@ flowchart TD
end
```
```mermaid
flowchart TD
A[Control Channel] -->|UPDATE| B["handle_call_update()"]
B -.-> C[Find Call]
C -.-> D{"call->state"}
D -.->|COMPLETED| E[Do Nothing]
D -.->|INACTIVE| F["call->state==RECORDING"]
F -.-> G["call->update()"]
D -.->|RECORDING| G
```

0 comments on commit a77da4b

Please sign in to comment.