boissier_app/app/models/portlets/garde_content.rb
2012-01-27 14:44:28 +01:00

8 lines
218 B
Ruby

class GardeContent < ActiveRecord::Base
has_one :portlet, :as => :content, :dependent => :destroy
has_many :garde_lines, :order => :position
accepts_nested_attributes_for :garde_lines, :allow_destroy => true
end