0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-04 10:39:43 +08:00
discourse/lib/vary_header.rb
2023-01-09 12:10:19 +00:00

7 lines
146 B
Ruby
Vendored

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