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:
parent
594074d91b
commit
36728d779d
|
@ -162,9 +162,10 @@ module CollectiveIdea #:nodoc:
|
||||||
end
|
end
|
||||||
|
|
||||||
# Rebuilds the left & rights if unset or invalid. Also very useful for converting from acts_as_tree.
|
# 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.
|
# 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|}
|
scope = lambda{|node|}
|
||||||
if acts_as_nested_set_options[:scope]
|
if acts_as_nested_set_options[:scope]
|
||||||
|
|
Loading…
Reference in New Issue