Browse Source

Fix the "send_alert" admin action.

pull/248/head
Pēteris Caune 6 years ago
parent
commit
32ee6d4ca9
No known key found for this signature in database GPG Key ID: E28D7679E9A9EDE2
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      hc/api/admin.py

+ 2
- 1
hc/api/admin.py View File

@ -50,7 +50,8 @@ class ChecksAdmin(admin.ModelAdmin):
def send_alert(self, request, qs): def send_alert(self, request, qs):
for check in 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()) self.message_user(request, "%d alert(s) sent" % qs.count())


Loading…
Cancel
Save