2012-11-19 13:24:05 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: issues
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# title :string(255)
|
|
|
|
# assignee_id :integer
|
|
|
|
# author_id :integer
|
|
|
|
# project_id :integer
|
2014-04-09 08:05:03 -04:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2012-11-19 13:24:05 -05:00
|
|
|
# position :integer default(0)
|
|
|
|
# branch_name :string(255)
|
|
|
|
# description :text
|
|
|
|
# milestone_id :integer
|
2013-03-15 09:16:02 -04:00
|
|
|
# state :string(255)
|
2013-08-21 05:34:02 -04:00
|
|
|
# iid :integer
|
2012-11-19 13:24:05 -05:00
|
|
|
#
|
|
|
|
|
2014-05-23 04:22:00 -04:00
|
|
|
require 'carrierwave/orm/activerecord'
|
|
|
|
require 'file_size_validator'
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
class Issue < ActiveRecord::Base
|
2013-01-03 02:06:07 -05:00
|
|
|
include Issuable
|
2013-08-21 05:16:26 -04:00
|
|
|
include InternalId
|
2014-10-05 01:53:44 -04:00
|
|
|
include Taskable
|
2012-06-07 08:44:57 -04:00
|
|
|
|
2013-10-02 09:18:28 -04:00
|
|
|
ActsAsTaggableOn.strict_case_match = true
|
|
|
|
|
2013-04-25 10:15:33 -04:00
|
|
|
belongs_to :project
|
|
|
|
validates :project, presence: true
|
|
|
|
|
|
|
|
scope :of_group, ->(group) { where(project_id: group.project_ids) }
|
|
|
|
scope :of_user_team, ->(team) { where(project_id: team.project_ids, assignee_id: team.member_ids) }
|
2013-04-02 18:28:12 -04:00
|
|
|
scope :cared, ->(user) { where(assignee_id: user) }
|
2013-06-17 06:29:50 -04:00
|
|
|
scope :open_for, ->(user) { opened.assigned_to(user) }
|
2013-02-19 04:01:19 -05:00
|
|
|
|
2013-02-18 08:22:18 -05:00
|
|
|
state_machine :state, initial: :opened do
|
2013-02-18 04:10:58 -05:00
|
|
|
event :close do
|
|
|
|
transition [:reopened, :opened] => :closed
|
|
|
|
end
|
|
|
|
|
|
|
|
event :reopen do
|
2013-02-18 08:22:18 -05:00
|
|
|
transition closed: :reopened
|
2013-02-18 04:10:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
state :opened
|
|
|
|
state :reopened
|
|
|
|
state :closed
|
|
|
|
end
|
2013-04-09 08:04:31 -04:00
|
|
|
|
2014-09-15 03:10:35 -04:00
|
|
|
def hook_attrs
|
|
|
|
attributes
|
|
|
|
end
|
|
|
|
|
2013-05-30 19:16:49 -04:00
|
|
|
# Mentionable overrides.
|
|
|
|
|
|
|
|
def gfm_reference
|
|
|
|
"issue ##{iid}"
|
|
|
|
end
|
2013-12-13 14:40:45 -05:00
|
|
|
|
|
|
|
# Reset issue events cache
|
|
|
|
#
|
|
|
|
# Since we do cache @event we need to reset cache in special cases:
|
|
|
|
# * when an issue is updated
|
|
|
|
# Events cache stored like events/23-20130109142513.
|
|
|
|
# The cache key includes updated_at timestamp.
|
|
|
|
# Thus it will automatically generate a new fragment
|
|
|
|
# when the event is updated because the key changes.
|
|
|
|
def reset_events_cache
|
2014-07-16 14:44:24 -04:00
|
|
|
Event.reset_event_cache_for(self)
|
2013-12-13 14:40:45 -05:00
|
|
|
end
|
2014-09-20 10:06:35 -04:00
|
|
|
|
|
|
|
# To allow polymorphism with MergeRequest.
|
|
|
|
def source_project
|
|
|
|
project
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|