Skip to content
Snippets Groups Projects
Commit 9c1f7953 authored by Tanner Prestegard's avatar Tanner Prestegard Committed by GraceDB
Browse files

bugfix: call to issue alerts in update_grbevent api endpoint

parent f9a864b6
No related branches found
No related tags found
No related merge requests found
......@@ -722,7 +722,8 @@ class GrbEventPatchView(InheritPermissionsAPIView):
issuer=request.user)
# Send LVAlert
EventAlertIssuer(grbevent, alert_type='update').issue_alerts()
EventAlertIssuer(grbevent, alert_type='update').issue_alerts(
old_far=grbevent.far, old_nscand=grbevent.is_ns_candidate())
return Response(eventToDict(grbevent, request=request))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment