From 49644ffc68b8abd446619f96fb9e9829672180c3 Mon Sep 17 00:00:00 2001 From: Marcin Kulik Date: Mon, 19 Nov 2012 22:35:52 +0100 Subject: [PATCH] Validate presence of a model, not id --- app/models/comment.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/comment.rb b/app/models/comment.rb index 4d258bd..d76c225 100644 --- a/app/models/comment.rb +++ b/app/models/comment.rb @@ -1,8 +1,8 @@ class Comment < ActiveRecord::Base validates :body, :presence => true - validates :asciicast_id, :presence => true - validates :user_id, :presence => true + validates :asciicast, :presence => true + validates :user, :presence => true belongs_to :user belongs_to :asciicast, :counter_cache => true