Fix RuboCop offense Rails/WhereRange (#39889).

git-svn-id: https://svn.redmine.org/redmine/trunk@22838 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2024-05-18 06:17:51 +00:00
parent a9518e28b8
commit bd4ac7c96c
2 changed files with 2 additions and 2 deletions

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

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