search for: opp1_id

Displaying 1 result from an estimated 1 matches for "opp1_id".

Did you mean: app_id
2006 Feb 09
6
Can I protect access to a relationship?
Hi, I have a class Match that looks like this (simplified) class Match < ActiveRecord::Base belongs_to :opp1, :class_name => "Player", :foreign_key => "opp1_id" belongs_to :opp2, :class_name => "Player", :foreign_key => "opp2_id" belongs_to :winner, :class_name => "Player", :foreign_key => "winner_id" end Can I prevent code from doing this? @match.winner = @some_player You can protect attributes...