mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 04:01:18 +08:00
validate markdown_linkify_tlds setting (#16485)
Prevent adding * as a value to markdown_linkify_tlds site setting
This commit is contained in:
16
lib/validators/markdown_linkify_tlds_validator.rb
Normal file
16
lib/validators/markdown_linkify_tlds_validator.rb
Normal file
@ -0,0 +1,16 @@
|
||||
# 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
|
Reference in New Issue
Block a user