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