diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-12-14 01:41:13 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2021-02-16 03:33:32 +0100 |
commit | dd512c140bee24446d1ddab901d04b51a72a2d86 (patch) | |
tree | c1e2d1beb1058ccc395d65fe586929b4de8add55 /app/controllers/account_follow_controller.rb | |
parent | 9c273c2a59755a46ff3933470b02df857537a4af (diff) | |
download | mastodon-feature-unify-uis.tar mastodon-feature-unify-uis.tar.gz mastodon-feature-unify-uis.tar.bz2 mastodon-feature-unify-uis.zip |
Diffstat (limited to 'app/controllers/account_follow_controller.rb')
-rw-r--r-- | app/controllers/account_follow_controller.rb | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/app/controllers/account_follow_controller.rb b/app/controllers/account_follow_controller.rb deleted file mode 100644 index 33394074d..000000000 --- a/app/controllers/account_follow_controller.rb +++ /dev/null @@ -1,12 +0,0 @@ -# frozen_string_literal: true - -class AccountFollowController < ApplicationController - include AccountControllerConcern - - before_action :authenticate_user! - - def create - FollowService.new.call(current_user.account, @account, with_rate_limit: true) - redirect_to account_path(@account) - end -end |