Remove RemoteAccountControllerConcern never used (#9482)
This commit is contained in:
		
							parent
							
								
									a6641d0541
								
							
						
					
					
						commit
						af123ea5e8
					
				
					 1 changed files with 0 additions and 21 deletions
				
			
		| 
						 | 
					@ -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…
	
		Reference in a new issue