1class Feedback < ActiveRecord::Base |
|
2 validates :comment, presence: true, length: { maximum: 32768 } |
|
3 validates :petition_link_or_title, length: { maximum: 255 }, allow_blank: true |
|
4 validates :email, email: true, length: { maximum: 255 }, allow_blank: true |
|
|
6 def petition_link? |
7 petition_link_or_title =~ /\A#{Regexp.escape(Site.url)}/ |
|
8 end |
|
9end |