mastodon/app/controllers/activitypub/base_controller.rb

21 lines
407 B
Ruby

# frozen_string_literal: true
class ActivityPub::BaseController < Api::BaseController
include SignatureVerification
include AccountOwnedConcern
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
def skip_pending_deletion_response?
false
end
end