discourse/lib/validators/at_least_one_group_validato...

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

16 lines
268 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AtLeastOneGroupValidator
def initialize(opts = {})
@opts = opts
end
def valid_value?(val)
val.present? && val != ""
end
def error_message
I18n.t("site_settings.errors.at_least_one_group_required")
end
end