]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/message.rb
The relation browser used the translated nominative model names of
[rails.git] / app / models / message.rb
index a85de223148955b23bb7cc9222e3cf5d4e992076..464c5502837b56c5ffdf409ff32288f6b5779cac 100644 (file)
@@ -1,3 +1,5 @@
+require 'validators'
+
 class Message < ActiveRecord::Base
   belongs_to :sender, :class_name => "User", :foreign_key => :from_user_id
   belongs_to :recipient, :class_name => "User", :foreign_key => :to_user_id
@@ -6,4 +8,5 @@ class Message < ActiveRecord::Base
   validates_length_of :title, :within => 1..255
   validates_inclusion_of :message_read, :in => [ true, false ]
   validates_associated :sender, :recipient
+  validates_as_utf8 :title
 end