Method: ComfyPress::ActsAsTree::InstanceMethods#root

Defined in:
lib/comfypress/extensions/acts_as_tree.rb

#rootObject

Returns the root node of the tree.



75
76
77
78
79
# File 'lib/comfypress/extensions/acts_as_tree.rb', line 75

def root
  node = self
  node = node.parent while node.parent
  node
end