]> git.openstreetmap.org Git - rails.git/blob - app/models/issue_comment.rb
Use reports_count so that counter_cache works automatically.
[rails.git] / app / models / issue_comment.rb
1 class IssueComment < ActiveRecord::Base
2   belongs_to :issue
3   belongs_to :user, :class_name => "User", :foreign_key => :commenter_user_id
4
5   validates :body, :presence => true
6 end