Class: Fuik::DownloadsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/fuik/downloads_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



4
5
6
7
8
# File 'app/controllers/fuik/downloads_controller.rb', line 4

def create
  webhook_event = Fuik::WebhookEvent.find(params[:event_id])

  send_data webhook_event.body, filename: "webhook_#{webhook_event.provider}_#{webhook_event.event_id}.json", type: "application/json", disposition: "attachment"
end