X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/5310c7000c232cd48f48fe473beeca7f4ff02b53..270b0d575e63b1beabb89fb33c58db57f9f69089:/app/models/issue_comment.rb?ds=inline diff --git a/app/models/issue_comment.rb b/app/models/issue_comment.rb index 3a5894cb3..8d150a02f 100644 --- a/app/models/issue_comment.rb +++ b/app/models/issue_comment.rb @@ -20,11 +20,13 @@ # 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 - validates :user, :presence => true - validates :issue, :presence => true + validates :body, :presence => true, :characters => true + + def body + RichText.new("markdown", self[:body]) + end end