docbrown/app/controllers/liquid_embeds_controller.rb
2019-08-23 17:42:04 -04:00

7 lines
189 B
Ruby

class LiquidEmbedsController < ApplicationController
before_action :set_cache_control_headers, only: %i[show]
layout false
def show
set_surrogate_key_header params.to_s
end
end