mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 08:57:10 -06:00
18 lines
260 B
Ruby
18 lines
260 B
Ruby
require_dependency 'enum_site_setting'
|
|
|
|
class SlugSetting < EnumSiteSetting
|
|
|
|
VALUES = %w(ascii encoded none)
|
|
|
|
def self.valid_value?(val)
|
|
VALUES.include?(val)
|
|
end
|
|
|
|
def self.values
|
|
VALUES.map do |l|
|
|
{ name: l, value: l }
|
|
end
|
|
end
|
|
|
|
end
|