summaryrefslogtreecommitdiffstats
path: root/app/models/message.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/message.rb')
-rw-r--r--app/models/message.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/models/message.rb b/app/models/message.rb
index 10ee02cde..f0c200172 100644
--- a/app/models/message.rb
+++ b/app/models/message.rb
@@ -39,6 +39,7 @@ class Message < ActiveRecord::Base
attr_protected :locked, :sticky
validates_presence_of :board, :subject, :content
validates_length_of :subject, :maximum => 255
+ validate :cannot_reply_to_locked_topic, :on => :create
after_create :add_author_as_watcher, :update_parent_last_reply
after_update :update_messages_board
@@ -51,7 +52,7 @@ class Message < ActiveRecord::Base
!user.nil? && user.allowed_to?(:view_messages, project)
end
- def validate_on_create
+ def cannot_reply_to_locked_topic
# Can not reply to a locked topic
errors.add_to_base 'Topic is locked' if root.locked? && self != root
end