The code powering m.abunchtell.com https://m.abunchtell.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

11 satır
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