[render skip] notif tester

This commit is contained in:
Andre Medeiros 2022-11-11 12:03:39 -05:00
parent 7582c90468
commit fd648cad3a
1 changed files with 6 additions and 3 deletions

View File

@ -83,12 +83,15 @@ func (a *api) testDeviceHandler(w http.ResponseWriter, r *http.Request) {
client = client.Production()
}
if _, err := client.Push(notification); err != nil {
res, err := client.Push(notification)
if err != nil {
a.logger.Info("failed to send test notification", zap.Error(err))
a.errorResponse(w, r, 500, err)
return
} else if !res.Sent() {
a.errorResponse(w, r, 422, fmt.Errorf("errror sending notification: %d: %s", res.StatusCode, res.Reason))
} else {
w.WriteHeader(http.StatusOK)
}
w.WriteHeader(http.StatusOK)
}
func (a *api) deleteDeviceHandler(w http.ResponseWriter, r *http.Request) {