Files
discourse/lib/vary_header.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
146 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module VaryHeader
def ensure_vary_header
response.headers["Vary"] ||= "Accept" if !params[:format]
end
end