You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bbenezech edited this page Nov 29, 2011
·
8 revisions
Synopsys:
classTeam < ActiveRecord::Basehas_and_belongs_to_many:fans,:inverse_of=>:teams# for a multiselect widget: (natural choice for n-n associations)attr_accessible:fan_ids# for a nested form: accepts_nested_attributes_for:fans,:allow_destroy=>trueattr_accessible:fans_attributes,:allow_destroy=>trueend# for infoclassFan < ActiveRecord::Basehas_and_belongs_to_many:teams,:inverse_of=>:fansendRailsAdmin.config |config| doconfig.modelTeamdoconfigure:fansdo# configuration hereendendend