Class: ReplicateRails::WebhookController

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

Instance Method Summary collapse

Instance Method Details

#eventObject



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

def event
  ReplicateRails.config.webhook_adapter.call(prediction)
  head :ok
rescue ReplicateRails::WebhookError
  head :unprocessable_entity
end