mirror of
https://github.com/redmine/redmine.git
synced 2025-11-18 03:00:52 +01:00
Adds an option to force nested set rebuild (#9577).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7815 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -162,9 +162,10 @@ module CollectiveIdea #:nodoc:
|
||||
end
|
||||
|
||||
# Rebuilds the left & rights if unset or invalid. Also very useful for converting from acts_as_tree.
|
||||
def rebuild!
|
||||
def rebuild!(force=false)
|
||||
# Don't rebuild a valid tree.
|
||||
return true if valid?
|
||||
# valid? doesn't strictly validate the tree
|
||||
return true if !force && valid?
|
||||
|
||||
scope = lambda{|node|}
|
||||
if acts_as_nested_set_options[:scope]
|
||||
|
||||
Reference in New Issue
Block a user