Sha256: 968ced82c47c299b0806ff2a28d6a68621bcd82ebc437d863cb710fd13b7f4d7
Contents?: true
Size: 324 Bytes
Versions: 33
Compression:
Stored size: 324 Bytes
Contents
module Bugsnag::Middleware class Mailman def initialize(bugsnag) @bugsnag = bugsnag end def call(notification) mailman_msg = notification.request_data[:mailman_msg] notification.add_tab(:mailman, {"message" => mailman_msg}) if mailman_msg @bugsnag.call(notification) end end end
Version data entries
33 entries across 33 versions & 2 rubygems