Skip to content

Instantly share code, notes, and snippets.

@nichthinkof30
nichthinkof30 / Category.rb
Created June 26, 2012 11:30
dynamic menu
class Category < ActiveRecord::Base
acts_as_nested_set
accepts_nested_attributes_for :children
attr_accessible :name, :parent_id
attr_protected :lft, :rgt
has_many :products
end