1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00
discourse/lib/vary_header.rb
2023-01-09 12:10:19 +00:00

8 lines
146 B
Ruby

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