7 lines
329 B
Ruby
7 lines
329 B
Ruby
class InvalidUrlCharsValidator < ActiveModel::EachValidator
|
|
INVALID_URL_CHARS = "/;.,?%#".freeze
|
|
|
|
def validate_each(record, attribute, value)
|
|
record.errors[attribute] << (options[:message] || I18n.t("validations.invalid_url_chars", :invalid_url_chars => INVALID_URL_CHARS)) if value =~ /[#{INVALID_URL_CHARS}]/
|
|
end
|
|
end
|