about summary refs log tree commit diff
path: root/app/controllers/api/follows_controller.rb
blob: acf627a0786f6dfefb246ab589b23749f1710028 (plain) (blame)
1
2
3
4
5
6
7
8
9
class Api::FollowsController < ApiController
  before_action :authenticate_user!
  respond_to    :json

  def create
    @follow = FollowService.new.(current_user.account, params[:uri])
    render action: :show
  end
end