mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 01:24:34 +08:00
20 lines
385 B
Ruby
20 lines
385 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"]
|
||
|
|
||
|
def self.valid_value?(val)
|
||
|
VALUES.include?(val)
|
||
|
end
|
||
|
|
||
|
def self.values
|
||
|
VALUES.map do |l|
|
||
|
{name: l, value: l}
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|