add validation for commentable_id

This commit is contained in:
Rocky Duan 2012-07-18 14:01:18 -04:00
Родитель fa7cf19349
Коммит 90a56da08b
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -19,6 +19,7 @@ class CommentThread < Content
validates_presence_of :title
validates_presence_of :body
validates_presence_of :course_id # do we really need this?
validates_presence_of :commentable_id
validates_presence_of :author if not CommentService.config["allow_anonymity"]
after_create :handle_after_create