Merge pull request #2141 from NARKOZ/notes-text-limit

remove length limit from notes
This commit is contained in:
Dmitriy Zaporozhets 2012-12-01 10:30:10 -08:00
commit e9212b0aa2

View file

@ -32,11 +32,10 @@ class Note < ActiveRecord::Base
delegate :name, to: :project, prefix: true
delegate :name, :email, to: :author, prefix: true
validates :project, presence: true
validates :note, presence: true, length: { within: 0..5000 }
validates :note, :project, presence: true
validates :attachment, file_size: { maximum: 10.megabytes.to_i }
mount_uploader :attachment, AttachmentUploader
mount_uploader :attachment, AttachmentUploader
# Scopes
scope :common, ->{ where(noteable_id: nil) }