This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-03-07 12:42:33 +01:00
|
|
|
class Api::FollowsController < ApiController
|
2016-03-11 16:47:36 +01:00
|
|
|
before_action :doorkeeper_authorize!
|
2016-03-07 12:42:33 +01:00
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def create
|
|
|
|
@follow = FollowService.new.(current_user.account, params[:uri])
|
|
|
|
render action: :show
|
|
|
|
end
|
|
|
|
end
|