]> git.openstreetmap.org Git - rails.git/blob - app/models/issue_comment.rb
Added a few more tests
[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