Add a callback to be ran whenever a new event is recorded
StripeWebhooks.register_callback('my_callback')
# File lib/stripe_webhooks/callbacks.rb, line 17 def register_callback(label) @callbacks << label unless @callbacks.include?(label) || label == 'application' end