X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/33dc83a470cd29c920d2d9661304ba4481998d21..23b8672bc9a8449f6a89d94b25ea036f4815e4bc:/app/models/diary_comment.rb diff --git a/app/models/diary_comment.rb b/app/models/diary_comment.rb index aaf48be4f..0013606d0 100644 --- a/app/models/diary_comment.rb +++ b/app/models/diary_comment.rb @@ -4,4 +4,13 @@ class DiaryComment < ActiveRecord::Base validates_presence_of :body validates_associated :diary_entry + + 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