Class: YoutubeValidator
- Inherits:
-
ActiveModel::EachValidator
- Object
- ActiveModel::EachValidator
- YoutubeValidator
- Defined in:
- app/models/redditor/video_block.rb
Instance Method Summary collapse
Instance Method Details
#validate_each(record, attribute, value) ⇒ Object
4 5 6 7 8 |
# File 'app/models/redditor/video_block.rb', line 4 def validate_each(record, attribute, value) if value =~ /[^A-z0-9_-]/ record.errors[attribute] << ([:message] || "- используются недопустимые символы") end end |