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