safe_attributes 'inherit_members',
:if => lambda {|project, user| project.parent.nil? || project.parent.visible?(user)}
- # Returns an array of projects that are in this project's hierarchy
- #
- # Example: parents, children, siblings
- def hierarchy
- parents = project.self_and_ancestors || []
- descendants = project.descendants || []
- project_hierarchy = parents | descendants # Set union
- end
-
# Returns an auto-generated project identifier based on the last identifier used
def self.next_identifier
p = Project.order('id DESC').first
def is_or_is_descendant_of?(other)
other == self || is_descendant_of?(other)
end
+
+ # Returns the ancestors, the element and its descendants
+ def hierarchy
+ nested_set_scope.where(
+ "#{self.class.table_name}.lft >= :lft AND #{self.class.table_name}.rgt <= :rgt" +
+ " OR #{self.class.table_name}.lft < :lft AND #{self.class.table_name}.rgt > :rgt",
+ {:lft => lft, :rgt => rgt})
+ end
end
end
end