~cytrogen/masto-fe

ref: d5155cbc212e43e26ebd12ca87e2b36ef1ade77c masto-fe/app/controllers/custom_css_controller.rb -rw-r--r-- 224 bytes
d5155cbc — renovate[bot] Update dependency ws to v8.14.1 (#26862) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
# frozen_string_literal: true

class CustomCssController < ActionController::Base # rubocop:disable Rails/ApplicationController
  def show
    expires_in 3.minutes, public: true
    render content_type: 'text/css'
  end
end