docbrown/app/controllers/onboardings_controller.rb
2020-03-31 16:12:14 +02:00

8 lines
221 B
Ruby

class OnboardingsController < ApplicationController
before_action :authenticate_user!
before_action :set_cache_control_headers, only: %i[show]
def show
set_surrogate_key_header "onboarding-slideshow"
end
end