mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:16:41 +08: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
|