mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-03 13:34:30 +00:00
16 lines
273 B
Ruby
16 lines
273 B
Ruby
class Api::SalmonController < ApiController
|
|
before_action :set_account
|
|
respond_to :txt
|
|
|
|
def update
|
|
ProcessInteractionService.new.call(request.body.read, @account)
|
|
head 201
|
|
end
|
|
|
|
private
|
|
|
|
def set_account
|
|
@account = Account.find(params[:id])
|
|
end
|
|
end
|