2011-10-08 17:36:38 -04:00
|
|
|
require 'carrierwave/orm/activerecord'
|
|
|
|
require 'file_size_validator'
|
|
|
|
|
|
|
|
class Note < ActiveRecord::Base
|
|
|
|
belongs_to :project
|
|
|
|
belongs_to :noteable, :polymorphic => true
|
|
|
|
belongs_to :author,
|
|
|
|
:class_name => "User"
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
attr_protected :author, :author_id
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
validates_presence_of :project
|
|
|
|
|
|
|
|
validates :note,
|
|
|
|
:presence => true,
|
2011-10-27 10:33:20 -04:00
|
|
|
:length => { :within => 0..5000 }
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
validates :attachment,
|
|
|
|
:file_size => {
|
|
|
|
:maximum => 10.megabytes.to_i
|
|
|
|
}
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
scope :common, where(:noteable_id => nil)
|
|
|
|
|
2011-10-18 07:33:30 -04:00
|
|
|
scope :last_week, where("created_at >= :date", :date => (Date.today - 7.days))
|
2011-10-18 10:44:43 -04:00
|
|
|
scope :since, lambda { |day| where("created_at >= :date", :date => (day)) }
|
2011-10-21 07:03:34 -04:00
|
|
|
scope :fresh, order("created_at DESC")
|
2011-10-18 07:33:30 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
mount_uploader :attachment, AttachmentUploader
|
|
|
|
end
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: notes
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# note :string(255)
|
|
|
|
# noteable_id :string(255)
|
|
|
|
# noteable_type :string(255)
|
|
|
|
# author_id :integer
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# project_id :integer
|
|
|
|
# attachment :string(255)
|
|
|
|
#
|
|
|
|
|