# issue_comments_user_id_fkey (user_id => users.id)
#
-class IssueComment < ActiveRecord::Base
+class IssueComment < ApplicationRecord
belongs_to :issue
belongs_to :user
validates :body, :presence => true, :characters => true
- validates :user, :presence => true
- validates :issue, :presence => true
+
+ def body
+ RichText.new("markdown", self[:body])
+ end
end