This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/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