]> git.openstreetmap.org Git - rails.git/blob - app/models/issue_comment.rb
bbc6261640ab48d635d9256a87d754b24e0c31ed
[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   validates :user, :presence => true
7   validates :issue, :presence => true
8 end