]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/message.rb
Updated comment to reflect implementation.
[rails.git] / app / models / message.rb
index ec712be252a706b9c1e68541dd3e4a816b90f7a1..a85de223148955b23bb7cc9222e3cf5d4e992076 100644 (file)
@@ -3,6 +3,7 @@ class Message < ActiveRecord::Base
   belongs_to :recipient, :class_name => "User", :foreign_key => :to_user_id
 
   validates_presence_of :title, :body, :sent_on, :sender, :recipient
+  validates_length_of :title, :within => 1..255
   validates_inclusion_of :message_read, :in => [ true, false ]
   validates_associated :sender, :recipient
 end