mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 19:01:52 +08:00
26fe047724
This is the first patch of many to replace our custom enums in Ruby by the ones provided by `ActiveRecord`.
20 lines
365 B
Ruby
20 lines
365 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ReviewableSensitivitySetting < EnumSiteSetting
|
|
|
|
def self.valid_value?(val)
|
|
values.any? { |v| v[:value].to_s == val.to_s }
|
|
end
|
|
|
|
def self.values
|
|
Reviewable.sensitivities.map do |p|
|
|
{ name: I18n.t("reviewables.sensitivity.#{p[0]}"), value: p[1] }
|
|
end
|
|
end
|
|
|
|
def self.translate_names?
|
|
false
|
|
end
|
|
|
|
end
|