summaryrefslogtreecommitdiff
path: root/app/models/note.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/note.rb')
-rw-r--r--app/models/note.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/models/note.rb b/app/models/note.rb
index 34edb94edca..9ac77ef7823 100644
--- a/app/models/note.rb
+++ b/app/models/note.rb
@@ -2,6 +2,9 @@ require 'carrierwave/orm/activerecord'
require 'file_size_validator'
class Note < ActiveRecord::Base
+ attr_accessible :note, :noteable, :noteable_id, :noteable_type, :project_id,
+ :attachment, :line_code
+
belongs_to :project
belongs_to :noteable, polymorphic: true
belongs_to :author,
@@ -16,7 +19,6 @@ class Note < ActiveRecord::Base
to: :author,
prefix: true
- attr_protected :author, :author_id
attr_accessor :notify
attr_accessor :notify_author