mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:07:53 +08:00
20 lines
395 B
Ruby
20 lines
395 B
Ruby
# TODO all enums should probably move out of models
|
|
# TODO we should be able to do this kind of stuff without a backing class
|
|
require_dependency 'enum_site_setting'
|
|
|
|
class CategoryStyleSetting < EnumSiteSetting
|
|
|
|
VALUES = ["bar", "box", "bullet"]
|
|
|
|
def self.valid_value?(val)
|
|
VALUES.include?(val)
|
|
end
|
|
|
|
def self.values
|
|
VALUES.map do |l|
|
|
{name: l, value: l}
|
|
end
|
|
end
|
|
|
|
end
|