]> git.openstreetmap.org Git - rails.git/blob - app/models/map_bug_comment.rb
Merge branch 'master' into openstreetbugs
[rails.git] / app / models / map_bug_comment.rb
1 class MapBugComment < ActiveRecord::Base
2   set_table_name 'map_bug_comment'
3
4   belongs_to :map_bug, :foreign_key => :bug_id
5   belongs_to :author, :class_name => "User", :foreign_key => :author_id
6
7   validates_inclusion_of :event, :in => [ "opened", "closed", "reopened", "commented", "hidden" ]
8   validates_presence_of :id, :on => :update
9   validates_uniqueness_of :id
10   validates_presence_of :visible
11
12   def author_name
13     if self.author_id.nil?
14       self.read_attribute(:author_name)
15     else
16       self.author.display_name
17     end
18   end
19 end