X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/f1c6a87aa137c11d0aff5a4b0e563ac2c2a8f82d..cabee400321555597cfa3b8a348d702ee758d530:/app/models/issue_comment.rb?ds=sidebyside diff --git a/app/models/issue_comment.rb b/app/models/issue_comment.rb index 69aa8bde9..8d150a02f 100644 --- a/app/models/issue_comment.rb +++ b/app/models/issue_comment.rb @@ -25,6 +25,8 @@ class IssueComment < ApplicationRecord 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