8 lines
218 B
Ruby
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
|