X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/c2f23fea6a7821a4ad4c97fd65744b138ec86267..3666b674330ec8d14a224932a191d6121c5974e2:/app/models/issue_comment.rb?ds=sidebyside diff --git a/app/models/issue_comment.rb b/app/models/issue_comment.rb index 2fe96f472..69aa8bde9 100644 --- a/app/models/issue_comment.rb +++ b/app/models/issue_comment.rb @@ -20,11 +20,11 @@ # 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, :invalid_chars => true + validates :body, :presence => true, :characters => true validates :user, :presence => true validates :issue, :presence => true end