mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-16 05:04:02 -05:00
10 lines
224 B
Ruby
10 lines
224 B
Ruby
class Api::FollowsController < ApiController
|
|
before_action :doorkeeper_authorize!
|
|
respond_to :json
|
|
|
|
def create
|
|
@follow = FollowService.new.(current_user.account, params[:uri])
|
|
render action: :show
|
|
end
|
|
end
|