The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
225 B

  1. # frozen_string_literal: true
  2. class CustomCssController < ApplicationController
  3. before_action :set_cache_headers
  4. def show
  5. skip_session!
  6. render plain: Setting.custom_css || '', content_type: 'text/css'
  7. end
  8. end