mirror of
				https://github.com/lunaisnotaboy/mastodon.git
				synced 2025-10-30 19:45:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			289 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			289 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| class ActivityPub::BaseController < Api::BaseController
 | |
|   skip_before_action :require_authenticated_user!
 | |
|   skip_before_action :require_not_suspended!
 | |
|   skip_around_action :set_locale
 | |
| 
 | |
|   private
 | |
| 
 | |
|   def skip_temporary_suspension_response?
 | |
|     false
 | |
|   end
 | |
| end
 |