about summary refs log tree commit diff
path: root/app/controllers/activitypub/base_controller.rb
blob: a3b5c4dfa52c8b6a874062e1b29bf6b5acf0fb59 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class ActivityPub::BaseController < Api::BaseController
  private

  def set_cache_headers
    response.headers['Vary'] = 'Signature' if authorized_fetch_mode?
  end
end