2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-05 06:50:59 -05:00
|
|
|
class Api::SalmonController < ApiController
|
2016-02-29 13:42:08 -05:00
|
|
|
before_action :set_account
|
2016-03-21 04:24:29 -04:00
|
|
|
respond_to :txt
|
2016-02-29 13:42:08 -05:00
|
|
|
|
|
|
|
def update
|
2016-10-13 07:41:06 -04:00
|
|
|
body = request.body.read
|
|
|
|
|
|
|
|
if body.nil?
|
|
|
|
head 200
|
|
|
|
else
|
|
|
|
ProcessInteractionService.new.call(body, @account)
|
|
|
|
head 201
|
|
|
|
end
|
2016-02-29 13:42:08 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:id])
|
|
|
|
end
|
|
|
|
end
|