mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 14:03:22 +08:00
fb0e656cb7
Why this change? One Ruby class per file improves readability
20 lines
355 B
Ruby
20 lines
355 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ThemeSettingsManager::String < ThemeSettingsManager
|
|
def is_valid_value?(new_value)
|
|
(@opts[:min]..@opts[:max]).include? new_value.to_s.length
|
|
end
|
|
|
|
def textarea
|
|
@opts[:textarea]
|
|
end
|
|
|
|
def json_schema
|
|
begin
|
|
JSON.parse(@opts[:json_schema])
|
|
rescue StandardError
|
|
false
|
|
end
|
|
end
|
|
end
|