##// END OF EJS Templates
Don't include anonymous user in assignable users (#21477)....
Jean-Philippe Lang -
r14588:11579abe8ce7
parent child
Show More
@@ -810,7 +810,7 class Issue < ActiveRecord::Base
810 # Users the issue can be assigned to
810 # Users the issue can be assigned to
811 def assignable_users
811 def assignable_users
812 users = project.assignable_users.to_a
812 users = project.assignable_users.to_a
813 users << author if author
813 users << author if (author && !author.anonymous?)
814 users << assigned_to if assigned_to
814 users << assigned_to if assigned_to
815 users.uniq.sort
815 users.uniq.sort
816 end
816 end
General Comments 0
You need to be logged in to leave comments. Login now