diff options
| author | Andrew Shalaev | 2012-04-15 16:53:43 +0600 | 
|---|---|---|
| committer | Andrew Shalaev | 2012-04-15 16:53:43 +0600 | 
| commit | c1c45bda1a67626441b0e948b0047ceef5126c0f (patch) | |
| tree | bccd98582511ac567276e9fcb2e9fc0aff780a2c /app | |
| parent | 26ecbad8803b7489215c77221841f7b3fb77071d (diff) | |
| download | inboxes-c1c45bda1a67626441b0e948b0047ceef5126c0f.tar.bz2 | |
fixed attr_accessible
Diffstat (limited to 'app')
| -rw-r--r-- | app/models/discussion.rb | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/app/models/discussion.rb b/app/models/discussion.rb index 336c434..463d0cc 100644 --- a/app/models/discussion.rb +++ b/app/models/discussion.rb @@ -1,6 +1,7 @@  class Discussion < ActiveRecord::Base    attr_accessor :recipient_tokens, :recipient_ids    attr_reader :recipient_ids +  attr_accessible :recipient_tokens    # creater    has_many :messages, :dependent => :destroy | 
