2016-11-16 00:56:29 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-05 20:50:59 +09:00
|
|
|
class Api::SalmonController < ApiController
|
2016-03-01 03:42:08 +09:00
|
|
|
before_action :set_account
|
2016-03-21 17:24:29 +09:00
|
|
|
respond_to :txt
|
2016-03-01 03:42:08 +09:00
|
|
|
|
|
|
|
def update
|
2016-10-13 20:41:06 +09:00
|
|
|
body = request.body.read
|
|
|
|
|
|
|
|
if body.nil?
|
|
|
|
head 200
|
|
|
|
else
|
2016-11-19 07:24:57 +09:00
|
|
|
SalmonWorker.perform_async(@account.id, body.force_encoding('UTF-8'))
|
2016-10-13 20:41:06 +09:00
|
|
|
head 201
|
|
|
|
end
|
2016-03-01 03:42:08 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:id])
|
|
|
|
end
|
|
|
|
end
|