Skip to content

Instantly share code, notes, and snippets.

@mathie
Created April 22, 2016 05:30
Show Gist options
  • Save mathie/2e5d5a2b19b6aa247d384833c867f944 to your computer and use it in GitHub Desktop.
Save mathie/2e5d5a2b19b6aa247d384833c867f944 to your computer and use it in GitHub Desktop.
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