1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-03 13:38:17 +00:00
mastodon/app/controllers/activitypub/base_controller.rb

17 lines
352 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
end