mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-02 10:37:59 +08:00
15 lines
263 B
Ruby
15 lines
263 B
Ruby
# 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
|