discourse/lib/validators/markdown_linkify_tlds_valid...

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

16 lines
263 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class MarkdownLinkifyTldsValidator
def initialize(opts = {})
@opts = opts
end
def valid_value?(value)
!value.include?("*")
end
def error_message
I18n.t("site_settings.errors.markdown_linkify_tlds")
end
end