chinwagsocial/app/controllers/api/v1/follows_controller.rb
Eugen Rochko 3731230c6d Allow @username@domain/@username in follow form, prevent duplicate accounts
created via remote look-up when domains differ but point to the same resource
2016-11-03 16:57:44 +01:00

18 lines
403 B
Ruby

class Api::V1::FollowsController < ApiController
before_action -> { doorkeeper_authorize! :follow }
respond_to :json
def create
raise ActiveRecord::RecordNotFound if params[:uri].blank?
@account = FollowService.new.call(current_user.account, target_uri).try(:target_account)
render action: :show
end
private
def target_uri
params[:uri].strip.gsub(/\A@/, '')
end
end