2011-10-08 17:36:38 -04:00
|
|
|
class Issue < ActiveRecord::Base
|
|
|
|
belongs_to :project
|
|
|
|
belongs_to :author, :class_name => "User"
|
|
|
|
belongs_to :assignee, :class_name => "User"
|
2011-12-18 05:10:20 -05:00
|
|
|
has_many :notes, :as => :noteable, :dependent => :destroy
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
attr_protected :author, :author_id, :project, :project_id
|
2012-03-07 03:13:43 -05:00
|
|
|
attr_accessor :author_id_of_changes
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
validates_presence_of :project_id
|
|
|
|
validates_presence_of :assignee_id
|
|
|
|
validates_presence_of :author_id
|
|
|
|
|
2011-11-03 06:56:26 -04:00
|
|
|
delegate :name,
|
2011-11-15 03:34:30 -05:00
|
|
|
:email,
|
|
|
|
:to => :author,
|
2011-11-03 06:56:26 -04:00
|
|
|
:prefix => true
|
|
|
|
|
2011-11-24 08:08:20 -05:00
|
|
|
delegate :name,
|
|
|
|
:email,
|
|
|
|
:to => :assignee,
|
|
|
|
:prefix => true
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
validates :title,
|
|
|
|
:presence => true,
|
|
|
|
:length => { :within => 0..255 }
|
2012-03-16 23:24:40 -04:00
|
|
|
|
|
|
|
validates :description,
|
|
|
|
:length => { :within => 0..2000 }
|
2011-10-26 09:46:25 -04:00
|
|
|
|
2011-10-25 00:34:02 -04:00
|
|
|
scope :critical, where(:critical => true)
|
|
|
|
scope :non_critical, where(:critical => false)
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
scope :opened, where(:closed => false)
|
|
|
|
scope :closed, where(:closed => true)
|
|
|
|
scope :assigned, lambda { |u| where(:assignee_id => u.id)}
|
2011-10-15 12:56:53 -04:00
|
|
|
|
|
|
|
acts_as_list
|
2011-10-25 00:34:02 -04:00
|
|
|
|
2011-11-28 16:34:24 -05:00
|
|
|
def self.open_for(user)
|
|
|
|
opened.assigned(user)
|
|
|
|
end
|
|
|
|
|
2011-10-25 00:34:02 -04:00
|
|
|
def today?
|
|
|
|
Date.today == created_at.to_date
|
|
|
|
end
|
2011-10-26 09:46:25 -04:00
|
|
|
|
2011-10-25 00:34:02 -04:00
|
|
|
def new?
|
|
|
|
today? && created_at == updated_at
|
|
|
|
end
|
2012-03-14 09:31:31 -04:00
|
|
|
|
|
|
|
# Return the number of +1 comments (upvotes)
|
|
|
|
def upvotes
|
|
|
|
notes.select(&:upvote?).size
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: issues
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# title :string(255)
|
2012-03-16 23:24:40 -04:00
|
|
|
# description :text
|
2011-10-08 17:36:38 -04:00
|
|
|
# assignee_id :integer
|
|
|
|
# author_id :integer
|
|
|
|
# project_id :integer
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# closed :boolean default(FALSE), not null
|
2011-10-17 11:31:21 -04:00
|
|
|
# position :integer default(0)
|
2011-11-10 17:08:20 -05:00
|
|
|
# critical :boolean default(FALSE), not null
|
2011-12-18 09:09:16 -05:00
|
|
|
# branch_name :string(255)
|
2011-10-08 17:36:38 -04:00
|
|
|
#
|
|
|
|
|