custom_css_controller.rb 224 B

12345678
  1. # frozen_string_literal: true
  2. class CustomCssController < ActionController::Base # rubocop:disable Rails/ApplicationController
  3. def show
  4. expires_in 3.minutes, public: true
  5. render content_type: 'text/css'
  6. end
  7. end