1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-29 11:03:08 -05:00

13 lines
284 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AccountFollowController < ApplicationController
include AccountControllerConcern
before_action :authenticate_user!
def create
FollowService.new.call(current_user.account, @account.acct)
redirect_to account_path(@account)
end
end