1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-28 23:08:25 +09:00
mastodon/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