Use mime type symbol to set content_type for custom css response (#37845)

This commit is contained in:
Matt Jankowski
2026-05-19 03:16:24 -04:00
committed by GitHub
parent 5f33cf0b0a
commit 1232b55211
2 changed files with 7 additions and 9 deletions

View File

@@ -3,7 +3,7 @@
class CustomCssController < ActionController::Base # rubocop:disable Rails/ApplicationController
def show
expires_in 1.month, public: true
render content_type: 'text/css'
render content_type: :css
end
private