]> git.openstreetmap.org Git - rails.git/blob - app/models/issue_comment.rb
Remove some more of the structured-details stuff
[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