2018-08-24 12:33:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-04-20 00:07:29 +10:00
|
|
|
class CustomCssController < ActionController::Base # rubocop:disable Rails/ApplicationController
|
2018-08-24 12:33:27 +10:00
|
|
|
def show
|
2019-07-18 01:14:25 +10:00
|
|
|
expires_in 3.minutes, public: true
|
2022-07-05 10:41:40 +10:00
|
|
|
render content_type: 'text/css'
|
2018-08-24 12:33:27 +10:00
|
|
|
end
|
|
|
|
end
|