removed unnecessary puts

This commit is contained in:
nilsding 2014-11-13 19:23:32 +01:00
parent f98e534c12
commit 4ea3b99ff3
1 changed files with 0 additions and 1 deletions

View File

@ -35,7 +35,6 @@ module ApplicationHelper
def inbox_count def inbox_count
return 0 unless user_signed_in? return 0 unless user_signed_in?
puts current_user.id
count = Inbox.select("COUNT(id) AS count") count = Inbox.select("COUNT(id) AS count")
.where(new: true) .where(new: true)
.where(user_id: current_user.id) .where(user_id: current_user.id)