openstreetmap-website/app/models/diary_comment.rb
Tom Hughes 23b8672bc9 Add support for processing incoming mail messages in reply to message
notifications and diary comment notifications, turning the maill messages
into reply messages through the site messaging system.
2009-11-05 23:16:20 +00:00

16 lines
323 B
Ruby

class DiaryComment < ActiveRecord::Base
belongs_to :user
belongs_to :diary_entry
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