1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-03 09:18:59 +09:00
whippy-edition/app/controllers/api/salmon_controller.rb
2016-08-17 17:58:00 +02:00

16 lines
269 B
Ruby

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