Skip to content

Instantly share code, notes, and snippets.

@mathie
Created April 22, 2016 05:28
Show Gist options
  • Save mathie/e737367a57dd6a92dfe55e5741d8eb99 to your computer and use it in GitHub Desktop.
Save mathie/e737367a57dd6a92dfe55e5741d8eb99 to your computer and use it in GitHub Desktop.
class Node < ActiveRecord::Base
def parent
if parent_id = path.last
self.class.find(parent_id)
else
nil
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment