Class: ConektaEvent::WebhookController

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

Instance Method Summary collapse

Instance Method Details

#eventObject



9
10
11
12
13
14
15
# File 'app/controllers/conekta_event/webhook_controller.rb', line 9

def event
  ConektaEvent.instrument(params)
  head :ok
rescue ConektaEvent::UnauthorizedError => e
  log_error(e)
  head :unauthorized
end