mirror of https://github.com/Siphonay/mastodon
10 lines
207 B
Ruby
10 lines
207 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class CustomCssController < ApplicationController
|
||
|
before_action :set_cache_headers
|
||
|
|
||
|
def show
|
||
|
render plain: Setting.custom_css || '', content_type: 'text/css'
|
||
|
end
|
||
|
end
|