This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-05 03:50:59 -08:00
|
|
|
class Api::SalmonController < ApiController
|
2016-02-29 10:42:08 -08:00
|
|
|
before_action :set_account
|
2016-03-21 01:24:29 -07:00
|
|
|
respond_to :txt
|
2016-02-29 10:42:08 -08:00
|
|
|
|
|
|
|
def update
|
2016-10-13 04:41:06 -07:00
|
|
|
body = request.body.read
|
|
|
|
|
|
|
|
if body.nil?
|
|
|
|
head 200
|
|
|
|
else
|
|
|
|
ProcessInteractionService.new.call(body, @account)
|
|
|
|
head 201
|
|
|
|
end
|
2016-02-29 10:42:08 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:id])
|
|
|
|
end
|
|
|
|
end
|