Trigger a notification for all notification options. Args: new_analysis (dict): The new_analysis to send.
(self, new_analysis)
| 92 | |
| 93 | |
| 94 | def notify_all(self, new_analysis): |
| 95 | """Trigger a notification for all notification options. |
| 96 | |
| 97 | Args: |
| 98 | new_analysis (dict): The new_analysis to send. |
| 99 | """ |
| 100 | |
| 101 | self.notify_slack(new_analysis) |
| 102 | self.notify_discord(new_analysis) |
| 103 | self.notify_twilio(new_analysis) |
| 104 | self.notify_gmail(new_analysis) |
| 105 | self.notify_telegram(new_analysis) |
| 106 | self.notify_webhook(new_analysis) |
| 107 | self.notify_stdout(new_analysis) |
| 108 | |
| 109 | def notify_discord(self, new_analysis): |
| 110 | """Send a notification via the discord notifier |
no test coverage detected