Class: Emailbutler::WebhooksController

Inherits:
ApplicationController show all
Defined in:
app/controllers/emailbutler/webhooks_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



8
9
10
11
12
13
14
15
# File 'app/controllers/emailbutler/webhooks_controller.rb', line 8

def create
  Emailbutler::Container.resolve(:webhooks_receiver).call(
    mapper: receiver_mapper,
    payload: mapper_params.to_h
  )

  head :ok
end