##// END OF EJS Templates
Rails4: replace deprecated find_all_by_* at IssueQuery model...
Toshi MARUYAMA -
r12288:3ca03beb6f81
parent child
Show More
@@ -409,7 +409,7 class IssueQuery < Query
409 groups = Group.all
409 groups = Group.all
410 operator = '!' # Override the operator since we want to find by assigned_to
410 operator = '!' # Override the operator since we want to find by assigned_to
411 else
411 else
412 groups = Group.find_all_by_id(value)
412 groups = Group.where(:id => value).all
413 end
413 end
414 groups ||= []
414 groups ||= []
415
415
General Comments 0
You need to be logged in to leave comments. Login now