Hi,

I can't find how do i created a getter and setter property for a non db
property. what i have done isnt working, i have a cnt mass assign error.

Here is what i've done:
 attr_accessor :creator_is_participant


  def creator_is_participant
    @participe
  end

  def creator_is_participant=(participe)
    if participe == true
      @participe = true
    else
      @participe = false
    end
  end

Greg
-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to