mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:15:46 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
24 lines
728 B
Ruby
24 lines
728 B
Ruby
# frozen_string_literal: true
|
|
|
|
# we can not guess what to do if customization already started, so skip it
|
|
if !Theme.exists?
|
|
STDERR.puts "> Seeding dark and light themes"
|
|
|
|
name = I18n.t("color_schemes.dark_theme_name")
|
|
dark_scheme = ColorScheme.find_by(base_scheme_id: "Dark")
|
|
dark_scheme ||= ColorScheme.create_from_base(name: name, via_wizard: true, base_scheme_id: "Dark")
|
|
|
|
name = I18n.t('color_schemes.dark_theme_name')
|
|
|
|
_dark_theme = Theme.create!(
|
|
name: name, user_id: -1,
|
|
color_scheme_id: dark_scheme.id,
|
|
user_selectable: true
|
|
)
|
|
|
|
name = I18n.t('color_schemes.default_theme_name')
|
|
default_theme = Theme.create!(name: name, user_id: -1, user_selectable: true)
|
|
|
|
default_theme.set_default!
|
|
end
|