Skip to content
Snippets Groups Projects
Commit 189a6b17 authored by ysksn's avatar ysksn Committed by Eugen Rochko
Browse files

Remove RemoteAccountControllerConcern never used (#9482)

parent 361818e9
Branches
No related tags found
No related merge requests found
# 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment