Allow assigning issues back to the author. #4199
This allows an issue to be reassigned to the author even if they are not a project member. Useful when passing back an issue to get more information from the author. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4240 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
068771ea07
commit
7798e1b1f7
|
@ -390,7 +390,9 @@ class Issue < ActiveRecord::Base
|
||||||
|
|
||||||
# Users the issue can be assigned to
|
# Users the issue can be assigned to
|
||||||
def assignable_users
|
def assignable_users
|
||||||
project.assignable_users
|
users = project.assignable_users
|
||||||
|
users << author if author
|
||||||
|
users.sort
|
||||||
end
|
end
|
||||||
|
|
||||||
# Versions that the issue can be assigned to
|
# Versions that the issue can be assigned to
|
||||||
|
|
|
@ -533,8 +533,18 @@ class IssueTest < ActiveSupport::TestCase
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_assignable_users
|
context "#assignable_users" do
|
||||||
assert_kind_of User, Issue.find(1).assignable_users.first
|
should "be Users" do
|
||||||
|
assert_kind_of User, Issue.find(1).assignable_users.first
|
||||||
|
end
|
||||||
|
|
||||||
|
should "include the issue author" do
|
||||||
|
project = Project.find(1)
|
||||||
|
non_project_member = User.generate!
|
||||||
|
issue = Issue.generate_for_project!(project, :author => non_project_member)
|
||||||
|
|
||||||
|
assert issue.assignable_users.include?(non_project_member)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_create_should_send_email_notification
|
def test_create_should_send_email_notification
|
||||||
|
|
Loading…
Reference in New Issue