FEATURE: Add dark mode option for category backgrounds (#24003)

Adds a new upload field for a dark mode category background that will be used as an alternative when Discourse is using a dark mode theme.
This commit is contained in:
Sérgio Saquetim
2023-10-20 09:48:06 -03:00
committed by GitHub
parent e7afd18155
commit 0cfc42e0e6
21 changed files with 228 additions and 20 deletions

View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddDarkModeBackgroundToCategories < ActiveRecord::Migration[7.0]
def change
add_column :categories, :uploaded_background_dark_id, :integer, index: true
end
end