mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 23:23:45 +08:00
17 lines
264 B
Ruby
17 lines
264 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
|