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 Dec 26, 2012
·
8 revisions
Synopsys:
classTeam < ActiveRecord::Basehas_and_belongs_to_many:fans# 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_attributesrails_admindoconfigure:fansdoinverse_of:teams# configuration hereendendend# for infoclassFan < ActiveRecord::Basehas_and_belongs_to_many:teamsend