Class: EventSubEvents::WebhookController

Inherits:
ActionController::Base
  • Object
show all
Defined in:
app/controllers/event_sub_events/webhook_controller.rb

Instance Method Summary collapse

Instance Method Details

#eventObject



8
9
10
11
12
13
# File 'app/controllers/event_sub_events/webhook_controller.rb', line 8

def event
  EventSubEvents.instrument(verified_event)
  head :ok
rescue EventSubEvents::SignatureVerificationError => e
  render plain: e, status: :bad_request
end