From 427487783bc129426a251aa79cfcfae2b3e4fa97 Mon Sep 17 00:00:00 2001 From: Neil Lalonde Date: Mon, 6 Oct 2014 14:39:48 -0400 Subject: [PATCH] remove block_login? check from current user --- lib/current_user.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/current_user.rb b/lib/current_user.rb index f2a07813e1b..97658574195 100644 --- a/lib/current_user.rb +++ b/lib/current_user.rb @@ -28,7 +28,6 @@ module CurrentUser def current_user c = current_user_provider.current_user - ScreenedIpAddress.block_login?(c, request.remote_ip) ? nil : c end private