From 4ea3b99ff31c58ea707cde9f921434cc5f9f79f9 Mon Sep 17 00:00:00 2001 From: nilsding Date: Thu, 13 Nov 2014 19:23:32 +0100 Subject: [PATCH] removed unnecessary puts --- app/helpers/application_helper.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 3216e556..fe10b635 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -35,7 +35,6 @@ module ApplicationHelper def inbox_count return 0 unless user_signed_in? - puts current_user.id count = Inbox.select("COUNT(id) AS count") .where(new: true) .where(user_id: current_user.id)