Browse Source

Remove RemoteAccountControllerConcern never used (#9482)

pull/4/head
ysksn 5 years ago
committed by Eugen Rochko
parent
commit
189a6b17fb
1 changed files with 0 additions and 21 deletions
  1. +0
    -21
      app/controllers/concerns/remote_account_controller_concern.rb

+ 0
- 21
app/controllers/concerns/remote_account_controller_concern.rb View File

@ -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

Loading…
Cancel
Save