gitlabhq/app/models/issue.rb

89 lines
1.9 KiB
Ruby
Raw Normal View History

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