mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-04-30 01:17:31 +08:00
16 lines
303 B
Ruby
16 lines
303 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ThemeSettingsManager::Bool < ThemeSettingsManager
|
|
def self.cast(value)
|
|
[true, "true"].include?(value)
|
|
end
|
|
|
|
def value
|
|
self.class.cast(super)
|
|
end
|
|
|
|
def value=(new_value)
|
|
new_value = (self.class.cast(new_value)).to_s
|
|
super(new_value)
|
|
end
|
|
end
|