Browse Source

Fix RuboCop offense Rails/WhereRange (#39889).


git-svn-id: https://svn.redmine.org/redmine/trunk@22838 e93f8b46-1217-0410-a6f0-8f06a7374b81
pull/131/merge
Go MAEDA 2 weeks ago
parent
commit
bd4ac7c96c

+ 1
- 1
lib/redmine/nested_set/issue_nested_set.rb View File

@@ -38,7 +38,7 @@ module Redmine
def target_lft
scope_for_max_rgt = self.class.where(:root_id => root_id).where(:parent_id => parent_id)
if id
scope_for_max_rgt = scope_for_max_rgt.where("id < ?", id)
scope_for_max_rgt = scope_for_max_rgt.where(id: ...id)
end
max_rgt = scope_for_max_rgt.maximum(:rgt)
if max_rgt

+ 1
- 1
lib/redmine/nested_set/project_nested_set.rb View File

@@ -40,7 +40,7 @@ module Redmine

def target_lft
siblings_rgt =
self.class.where(:parent_id => parent_id).where("name < ?", name).maximum(:rgt)
self.class.where(:parent_id => parent_id).where(name: ...name).maximum(:rgt)
if siblings_rgt
siblings_rgt + 1
elsif parent_id

Loading…
Cancel
Save