Displaying 1 result from an estimated 1 matches for "opp2".
Did you mean:
op2
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 from mass assignment,...