Created
April 22, 2016 05:30
-
-
Save mathie/2e5d5a2b19b6aa247d384833c867f944 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Node < ActiveRecord::Base | |
def ancestors | |
if path.present? | |
self.class.where(id: path) | |
else | |
self.class.none | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment