We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0e5611 commit 7c4aa42Copy full SHA for 7c4aa42
docs/send-notification-flow.md
@@ -165,12 +165,12 @@ flowchart TD
165
checkSettings -->|Yes| findTemplate{Find message template}
166
checkSettings -->|No| endFlow[End flow]
167
findTemplate -->|Exists| setMessage[Set message for notification]
168
+ sendNotification -->|Failure| log[Log error]
169
findTemplate -->|Not Exists| log[Log error]
170
setMessage --> checkMessage{Is message empty?}
171
checkMessage -->|Yes| endFlow[End flow]
172
checkMessage -->|No| sendNotification[Send notification]
173
sendNotification -->|Success| endFlow[End flow]
- sendNotification -->|Failure| log[Log error]
174
log --> endFlow
175
```
176
0 commit comments