This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-07 03:42:33 -08:00
|
|
|
class Api::FollowsController < ApiController
|
2016-03-11 07:47:36 -08:00
|
|
|
before_action :doorkeeper_authorize!
|
2016-03-07 03:42:33 -08:00
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def create
|
2016-09-12 10:20:55 -07:00
|
|
|
if params[:uri].blank?
|
|
|
|
raise ActiveRecord::RecordNotFound
|
|
|
|
end
|
|
|
|
|
2016-09-17 07:36:10 -07:00
|
|
|
@account = FollowService.new.(current_user.account, params[:uri]).try(:target_account)
|
2016-03-07 03:42:33 -08:00
|
|
|
render action: :show
|
|
|
|
end
|
|
|
|
end
|