Skip to content

Commit

Permalink
fix: update the flow in flowchart docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tanhongit committed Oct 14, 2024
1 parent d0e5611 commit 7c4aa42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/send-notification-flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,12 @@ flowchart TD
checkSettings -->|Yes| findTemplate{Find message template}
checkSettings -->|No| endFlow[End flow]
findTemplate -->|Exists| setMessage[Set message for notification]
sendNotification -->|Failure| log[Log error]
findTemplate -->|Not Exists| log[Log error]
setMessage --> checkMessage{Is message empty?}
checkMessage -->|Yes| endFlow[End flow]
checkMessage -->|No| sendNotification[Send notification]
sendNotification -->|Success| endFlow[End flow]
sendNotification -->|Failure| log[Log error]
log --> endFlow
```

Expand Down

0 comments on commit 7c4aa42

Please sign in to comment.