mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
a2cabf3f4a
Fix #3894
11 lines
225 B
Ruby
11 lines
225 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CustomCssController < ApplicationController
|
|
before_action :set_cache_headers
|
|
|
|
def show
|
|
skip_session!
|
|
render plain: Setting.custom_css || '', content_type: 'text/css'
|
|
end
|
|
end
|