gitlab-org--gitlab-foss/app/models/issue.rb

75 lines
1.7 KiB
Ruby
Raw Normal View History

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