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

  def update
    ProcessInteractionService.new.(request.body.read, @account)
    render nothing: true, status: 201
  end

  private

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