This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/lib/validators/regex_setting_validation.rb
2017-10-04 15:08:51 -04:00

18 lines
341 B
Ruby

module RegexSettingValidation
def initialize_regex_opts(opts = {})
@regex = Regexp.new(opts[:regex]) if opts[:regex]
@regex_error = opts[:regex_error] || 'site_settings.errors.regex_mismatch'
end
def regex_match?(val)
if @regex && !(val =~ @regex)
@regex_fail = true
return false
end
true
end
end