Fix the "send_alert" admin action.

This commit is contained in:
Pēteris Caune 2019-05-02 14:06:56 +03:00
parent 9f69dcb158
commit 32ee6d4ca9
No known key found for this signature in database
GPG Key ID: E28D7679E9A9EDE2

View File

@ -50,7 +50,8 @@ class ChecksAdmin(admin.ModelAdmin):
def send_alert(self, request, qs):
for check in qs:
check.send_alert()
for channel in check.channel_set.all():
channel.notify(check)
self.message_user(request, "%d alert(s) sent" % qs.count())