mirror of
https://github.com/redmine/redmine.git
synced 2026-03-24 13:21:04 +01:00
Merged r14049 (#19197).
git-svn-id: http://svn.redmine.org/redmine/branches/3.0-stable@14056 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -819,12 +819,12 @@ class Issue < ActiveRecord::Base
|
||||
end
|
||||
end
|
||||
|
||||
# Returns the previous assignee if changed
|
||||
# Returns the previous assignee (user or group) if changed
|
||||
def assigned_to_was
|
||||
# assigned_to_id_was is reset before after_save callbacks
|
||||
user_id = @previous_assigned_to_id || assigned_to_id_was
|
||||
if user_id && user_id != assigned_to_id
|
||||
@assigned_to_was ||= User.find_by_id(user_id)
|
||||
@assigned_to_was ||= Principal.find_by_id(user_id)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -2591,4 +2591,12 @@ class IssueTest < ActiveSupport::TestCase
|
||||
issue.tracker = Tracker.find(2)
|
||||
assert_equal IssueStatus.find(3), issue.status
|
||||
end
|
||||
|
||||
def test_assigned_to_was_with_a_group
|
||||
group = Group.find(10)
|
||||
|
||||
issue = Issue.generate!(:assigned_to => group)
|
||||
issue.reload.assigned_to = nil
|
||||
assert_equal group, issue.assigned_to_was
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user