UNPKG

bugsnag-notification-plugins

Version:

Notification plugins (chat and issue tracking integrations) for Bugsnag.

14 lines (11 loc) 344 B
NotificationPlugin = require "../../notification-plugin" class Webhook extends NotificationPlugin @receiveEvent: (config, event) -> payload = JSON.stringify(event).replace(/\./g,".") # Send the request to the url @request .post(config.url) .type('json') .send(payload) .end(); module.exports = Webhook