2016-03-07 06:42:33 -05:00
|
|
|
class Api::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-12 13:20:55 -04:00
|
|
|
if params[:uri].blank?
|
|
|
|
raise ActiveRecord::RecordNotFound
|
|
|
|
end
|
|
|
|
|
2016-03-07 06:42:33 -05:00
|
|
|
@follow = FollowService.new.(current_user.account, params[:uri])
|
|
|
|
render action: :show
|
|
|
|
end
|
|
|
|
end
|