Commit 99ef3a84 authored by Grzegorz Bizon's avatar Grzegorz Bizon Committed by Robert Speicher

Validate presence of noteable_type in note model

parent e558edd1
......@@ -29,6 +29,7 @@ class Note < ActiveRecord::Base
# Attachments are deprecated and are handled by Markdown uploader
validates :attachment, file_size: { maximum: :max_attachment_size }
validates :noteable_type, presence: true
validates :noteable_id, presence: true, unless: :for_commit?
validates :commit_id, presence: true, if: :for_commit?
validates :author, presence: true
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment