mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
DEV: Remove deprecated EmailValidator.email_regex (#24129)
The EmailValidator.email_regex method was moved to EmailAddressValidator.email_regex and marked for removal in 2.9.0. The method was proxied for backwards compatibility in plugins. This PR removes the method.
This commit is contained in:
parent
ac70ef929f
commit
9acdafe87c
|
@ -52,13 +52,4 @@ class EmailValidator < ActiveModel::EachValidator
|
|||
Rails.configuration.respond_to?(:developer_emails) &&
|
||||
Rails.configuration.developer_emails.include?(value)
|
||||
end
|
||||
|
||||
def self.email_regex
|
||||
Discourse.deprecate(
|
||||
"EmailValidator.email_regex is deprecated. Please use EmailAddressValidator instead.",
|
||||
output_in_test: true,
|
||||
drop_from: "2.9.0",
|
||||
)
|
||||
EmailAddressValidator.email_regex
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user