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