mirror of
https://github.com/discourse/discourse.git
synced 2024-11-21 16:38:15 -06:00
8 lines
146 B
Ruby
8 lines
146 B
Ruby
# frozen_string_literal: true
|
|
|
|
module VaryHeader
|
|
def ensure_vary_header
|
|
response.headers["Vary"] ||= "Accept" if !params[:format]
|
|
end
|
|
end
|