about summary refs log tree commit diff
path: root/app/controllers/api/salmon_controller.rb
blob: 329b258a41f3902b3fe9d60b603b25f871a7cedd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Api::SalmonController < ApiController
  before_action :set_account
  respond_to :txt

  def update
    ProcessInteractionService.new.(request.body.read, @account)
    head 201
  end

  private

  def set_account
    @account = Account.find(params[:id])
  end
end