]> cat aescling's git repositories - mastodon.git/commitdiff
Remove RemoteAccountControllerConcern never used (#9482)
authorysksn <bluewhale1982@gmail.com>
Mon, 10 Dec 2018 20:38:01 +0000 (05:38 +0900)
committerEugen Rochko <eugen@zeonfederated.com>
Mon, 10 Dec 2018 20:38:01 +0000 (21:38 +0100)
app/controllers/concerns/remote_account_controller_concern.rb [deleted file]

diff --git a/app/controllers/concerns/remote_account_controller_concern.rb b/app/controllers/concerns/remote_account_controller_concern.rb
deleted file mode 100644 (file)
index e179106..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-# frozen_string_literal: true
-
-module RemoteAccountControllerConcern
-  extend ActiveSupport::Concern
-
-  included do
-    layout 'public'
-    before_action :set_account
-    before_action :check_account_suspension
-  end
-
-  private
-
-  def set_account
-    @account = Account.find_remote!(params[:acct])
-  end
-
-  def check_account_suspension
-    gone if @account.suspended?
-  end
-end