mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 08:57:10 -06:00
16 lines
251 B
Ruby
16 lines
251 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ThemeSettingsManager::Float < ThemeSettingsManager
|
||
|
def self.cast(value)
|
||
|
value.to_f
|
||
|
end
|
||
|
|
||
|
def value
|
||
|
self.class.cast(super)
|
||
|
end
|
||
|
|
||
|
def value=(new_value)
|
||
|
super(self.class.cast(new_value))
|
||
|
end
|
||
|
end
|