2016-09-27 15:58:23 +01:00
|
|
|
class Api::V1::FollowsController < ApiController
|
2016-03-11 15:47:36 +00:00
|
|
|
before_action :doorkeeper_authorize!
|
2016-03-07 11:42:33 +00:00
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def create
|
2016-09-29 20:28:21 +01:00
|
|
|
raise ActiveRecord::RecordNotFound if params[:uri].blank?
|
2016-09-12 18:20:55 +01:00
|
|
|
|
2016-10-06 15:36:16 +01:00
|
|
|
@account = FollowService.new.call(current_user.account, params[:uri].strip).try(:target_account)
|
2016-03-07 11:42:33 +00:00
|
|
|
render action: :show
|
|
|
|
end
|
|
|
|
end
|