discourse/lib/validators/group_setting_validator.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
264 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class GroupSettingValidator
def initialize(opts = {})
@opts = opts
end
def valid_value?(val)
val.blank? || Group.exists?(name: val)
end
def error_message
I18n.t("site_settings.errors.invalid_group")
end
end