Author should be displayed as assignable on a single issue right click menu (#7136).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6310 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
fdd5367eba
commit
d0889f9127
@ -26,8 +26,11 @@ class ContextMenusController < ApplicationController
|
|||||||
:delete => User.current.allowed_to?(:delete_issues, @projects)
|
:delete => User.current.allowed_to?(:delete_issues, @projects)
|
||||||
}
|
}
|
||||||
if @project
|
if @project
|
||||||
@assignables = @project.assignable_users
|
if @issue
|
||||||
@assignables << @issue.assigned_to if @issue && @issue.assigned_to && !@assignables.include?(@issue.assigned_to)
|
@assignables = @issue.assignable_users
|
||||||
|
else
|
||||||
|
@assignables = @project.assignable_users
|
||||||
|
end
|
||||||
@trackers = @project.trackers
|
@trackers = @project.trackers
|
||||||
else
|
else
|
||||||
#when multiple projects, we only keep the intersection of each set
|
#when multiple projects, we only keep the intersection of each set
|
||||||
|
Loading…
x
Reference in New Issue
Block a user