]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/diary_comment.rb
Turn on mass assignment protection
[rails.git] / app / models / diary_comment.rb
index aaf48be4fdcc8c9f200b41efceabfc74e8058f09..b915e027a9e1f49d62b2443b4f7b2b46f3630224 100644 (file)
@@ -4,4 +4,15 @@ class DiaryComment < ActiveRecord::Base
 
   validates_presence_of :body
   validates_associated :diary_entry
+
+  attr_accessible :body
+
+  def digest
+    md5 = Digest::MD5.new
+    md5 << diary_entry_id.to_s
+    md5 << user_id.to_s
+    md5 << created_at.xmlschema
+    md5 << body
+    md5.hexdigest
+  end
 end