2016-03-07 20:42:33 +09:00
|
|
|
class Api::FollowsController < ApiController
|
2016-03-12 00:47:36 +09:00
|
|
|
before_action :doorkeeper_authorize!
|
2016-03-07 20:42:33 +09:00
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def create
|
2016-09-13 02:20:55 +09:00
|
|
|
if params[:uri].blank?
|
|
|
|
raise ActiveRecord::RecordNotFound
|
|
|
|
end
|
|
|
|
|
2016-03-07 20:42:33 +09:00
|
|
|
@follow = FollowService.new.(current_user.account, params[:uri])
|
|
|
|
render action: :show
|
|
|
|
end
|
|
|
|
end
|